@@ -989,7 +989,7 @@ def run(self,args):
989
989
if len (self .contig_list ) == 1 :
990
990
if os .path .isfile (self .contig_list [0 ]):
991
991
#Check if contig_list is a file or just a list of chromosomes
992
- #Parse file to extract chromosme list
992
+ #Parse file to extract chromosome list
993
993
tmp_list = []
994
994
with open (self .contig_list [0 ] , 'r' ) as chromFile :
995
995
for line in chromFile :
@@ -1360,7 +1360,7 @@ def register(self,parser):
1360
1360
parser .add_argument ('-N' ,'--non-cpg' , dest = "non_cpg" , action = "store_true" , help = "Output gemBS bed with non-cpg sites." )
1361
1361
parser .add_argument ('-B' ,'--bed-methyl' , dest = "bedMethyl" , action = "store_true" , help = "Output bedMethyl files (bed and bigBed)" )
1362
1362
parser .add_argument ('-S' ,'--snps' , dest = "snps" , action = "store_true" ,help = "Output SNPs" )
1363
- parser .add_argument ('--extract-threads' , dest = "extract_threads" , metavar = "THREADS" , help = 'Number of extra threads for extract step' )
1363
+ parser .add_argument ('-t' , '- -extract-threads' , dest = "extract_threads" , metavar = "THREADS" , help = 'Number of extra threads for extract step' )
1364
1364
parser .add_argument ('--snp-list' , dest = "snp_list" , help = "List of SNPs to output" )
1365
1365
parser .add_argument ('--snp-db' , dest = "snp_db" , help = "dbSNP_idx processed SNP idx" )
1366
1366
parser .add_argument ('--dry-run' , dest = "dry_run" , action = "store_true" , help = "Output mapping commands without execution" )
0 commit comments