Skip to content
Snippets Groups Projects

Feature/samtools sort after STAR

Merged BIOPZ-Gypas Foivos requested to merge feature/samtools-sort into dev
1 unresolved thread
Files
2
+ 11
2
@@ -660,14 +660,23 @@ rule sort_genomic_alignment_samtools:
"{sample}",
"map_genome",
"{sample}.{seqmode}.Aligned.sortedByCoord.out.bam"),
prefix_temp_dir = temp(
directory(
os.path.join(
config["output_dir"],
"samples",
"{sample}.{seqmode}",
"sort_genomic_alignment_samtools")
)
)
params:
cluster_log_path = config["cluster_log_dir"],
prefix_temp = os.path.join(
config["output_dir"],
"samples",
"{sample}",
"map_genome",
"{sample}.{seqmode}",
"sort_genomic_alignment_samtools",
"temp"),
additional_params = parse_rule_config(
rule_config,
Loading