@@ -636,7 +636,7 @@ def parse_count(
636636 parser .error (
637637 f'Technology `{ args .x } ` can not be used with workflow { args .workflow } .'
638638 )
639- if args .sum is not None :
639+ if args .sum != "none" :
640640 parser .error ('--sum incompatible with lamanno/nucleus' )
641641 if args .x .upper () == 'SMARTSEQ3' :
642642 from .count import count_velocity_smartseq3
@@ -1036,8 +1036,8 @@ def setup_ref_args(
10361036 '--workflow' ,
10371037 metavar = '{standard,nac,kite,custom}' ,
10381038 help = (
1039- 'Type of workflow to prepare files for . '
1040- 'Use `nac` for RNA velocity or single-nucleus RNA-seq reads . '
1039+ 'The type of index to create . '
1040+ 'Use `nac` for an index type that can quantify nascent and mature RNA . '
10411041 'Use `custom` for indexing targets directly. '
10421042 'Use `kite` for feature barcoding. (default: standard)'
10431043 ),
@@ -1253,7 +1253,7 @@ def setup_count_args(
12531253 metavar = '{standard,nac,kite,kite:10xFB}' ,
12541254 help = (
12551255 'Type of workflow. '
1256- 'Use `nac` for RNA velocity or single-nucleus RNA-seq reads . '
1256+ 'Use `nac` to specify a nac index for producing mature/nascent/ambiguous matrices . '
12571257 'Use `kite` for feature barcoding. '
12581258 'Use `kite:10xFB` for 10x Genomics Feature Barcoding technology. '
12591259 '(default: standard)'
@@ -1301,14 +1301,14 @@ def setup_count_args(
13011301 required_nac .add_argument (
13021302 '-c1' ,
13031303 metavar = 'T2C' ,
1304- help = 'Path to cDNA transcripts-to-capture' ,
1304+ help = 'Path to mature transcripts-to-capture' ,
13051305 type = str ,
13061306 required = workflow in {'nac' }
13071307 )
13081308 required_nac .add_argument (
13091309 '-c2' ,
13101310 metavar = 'T2C' ,
1311- help = 'Path to intron transcripts-to-captured' ,
1311+ help = 'Path to nascent transcripts-to-captured' ,
13121312 type = str ,
13131313 required = workflow in {'nac' }
13141314 )
0 commit comments