@@ -484,7 +484,7 @@ if manager.config.general.rRNA_feature or manager.config.general.contaminant_fil
484
484
input:
485
485
expand("{sample}/bowtie1_mapping_rna/{sample}_bowtie1.log", sample=manager.samples)
486
486
output:
487
- "logs/fix_bowtie1/{sample} .log"
487
+ "logs/fix_bowtie1/fix_bowtie1 .log"
488
488
run:
489
489
490
490
for filename in input:
@@ -501,7 +501,7 @@ if manager.config.general.rRNA_feature or manager.config.general.contaminant_fil
501
501
fout.write(line)
502
502
with open(output[0], "w") as fout:
503
503
fout.write("")
504
- expected_output += expand( "logs/fix_bowtie1/{sample} .log", sample=manager.samples)
504
+ expected_output += [ "logs/fix_bowtie1/fix_bowtie1 .log"]
505
505
506
506
507
507
# ========================================================== bowtie2 mapping
@@ -1062,7 +1062,7 @@ rule prepare_DGE_analysis:
1062
1062
attribute = config['feature_counts']['attribute']
1063
1063
feature = config['feature_counts']['feature']
1064
1064
fout.write("#/bin/sh\nsequana rnadiff --features all_features.out " +
1065
- f" --annotation {__gff_file__} --design design.csv --feature-name {feature} --attribute-name {attribute}")
1065
+ f" --annotation-file {__gff_file__} --design design.csv --feature-name {feature} --attribute-name {attribute}")
1066
1066
shell(f"chmod 755 {output.rnadiff}")
1067
1067
1068
1068
@@ -1166,7 +1166,7 @@ onsuccess:
1166
1166
else:
1167
1167
filename = "multiqc/multiqc_data/mqc_bowtie2_pe_plot_1.txt"
1168
1168
if not os.path.exists(filename):
1169
- filename = "multiqc/multiqc_report_data/mqc_bowtie2_se_plot_1 .txt"
1169
+ filename = "multiqc/multiqc_report_data/mqc_bowtie2_pe_plot_1 .txt"
1170
1170
br = Bowtie2(filename)
1171
1171
fig = br.plot(html_code=True)
1172
1172
from plotly import offline
0 commit comments