Skip to content

Commit

Permalink
fix Star crash by removing the hard coded '--outSAMtype BAM SortedByC…
Browse files Browse the repository at this point in the history
…oordinate' parameter from rule 'align'; this Star parameter is now solely defined in config.yaml
  • Loading branch information
kilpert committed Sep 6, 2021
1 parent 57f9f72 commit 5526842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/align.smk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rule align:
"logs/star/{sample}-{unit}.log",
params:
index=lambda wc, input: input.index,
extra="--outSAMtype BAM SortedByCoordinate --quantMode GeneCounts --sjdbGTFfile {} {}".format(
extra="--quantMode GeneCounts --sjdbGTFfile {} {}".format(
"resources/genome.gtf", config["params"]["star"]
),
threads: 24
Expand Down

0 comments on commit 5526842

Please sign in to comment.