@@ -38,7 +38,7 @@ rule get_strand_info:
3838 input :
3939 starbam = rules .star .output .starbam , # used only for strandinfo
4040 output :
41- strandinfo = join (WORKDIR ,"rsem" ,"{sample}" ,"{sample}.strandinfo" )
41+ strandinfo = join (WORKDIR ,"rsem" ,"{sample}" ,"{sample}.strandinfo" ),
4242 envmodules : TOOLS ['rseqc' ]['version' ],
4343 params :
4444 sample = "{sample}" ,
@@ -53,7 +53,7 @@ infer_experiment.py -r {input.bed12} -i {input.starbam} -s 1000000 > {output.str
5353
5454rule get_rsem_counts :
5555 input :
56- strandinfo = rule .get_strand_info .output .strandinfo ,
56+ strandinfo = rules .get_strand_info .output .strandinfo ,
5757 tbam = rules .star .output .tbam ,
5858 bed12 = rules .create_bed12 .output .bed12 ,
5959 ump = rules .create_rsem_index .output .ump
@@ -84,7 +84,7 @@ mv {params.sample}.isoforms.results {output.tcounts}
8484
8585rule get_rsem_counts_mutated :
8686 input :
87- strandinfo = rule .get_strand_info .output .strandinfo ,
87+ strandinfo = rules .get_strand_info .output .strandinfo ,
8888 mutatedtbam = rules .split_tbam_by_mutation .output .mutatedtbam ,
8989 bed12 = rules .create_bed12 .output .bed12 ,
9090 ump = rules .create_rsem_index .output .ump
@@ -115,7 +115,7 @@ mv {params.sample}_mutated.isoforms.results {output.mutatedtcounts}
115115
116116rule get_rsem_counts_unmutated :
117117 input :
118- strandinfo = rule .get_strand_info .output .strandinfo ,
118+ strandinfo = rules .get_strand_info .output .strandinfo ,
119119 unmutatedtbam = rules .split_tbam_by_mutation .output .unmutatedtbam ,
120120 bed12 = rules .create_bed12 .output .bed12 ,
121121 ump = rules .create_rsem_index .output .ump
0 commit comments