Skip to content

Commit

Permalink
Merge pull request #716 from kashyapchhatbar/patch-1
Browse files Browse the repository at this point in the history
Fixed --fragmentLength argument in computeGCBias rule
  • Loading branch information
katsikora committed Oct 26, 2020
2 parents 1f8fe1f + a429c3e commit 3ca8345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakePipes/shared/rules/deepTools_qc.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ rule computeGCBias:
genome_size = int(genome_size),
genome_2bit = genome_2bit,
blacklist = "--blackListFileName {}".format(blacklist_bed) if blacklist_bed else "",
median_fragment_length = "" if pairedEnd else "-fragmentLength {}".format(fragmentLength),
median_fragment_length = "" if pairedEnd else "--fragmentLength {}".format(fragmentLength),
sampleSize = downsample if downsample and downsample < 10000000 else 10000000
log:
out = "deepTools_qc/logs/computeGCBias.{sample}.filtered.out",
Expand Down

0 comments on commit 3ca8345

Please sign in to comment.