这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ version 6.0.0-dev
+ Use softlinks to localise the database for centrifuge.
+ Added the FastqFilter task.
+ Added a new input `revcomp` to cutadapt to set the `--revcomp` flag, defaults to `false`.
+ Fixed bug whereby `samtools.Fastq` could produce out of sync R1/R2 when used with an unsorted bam input. `samtools collate` is now used by default to group reads by readname in order to avoid this issue.
+ New samtools task: split.
+ Update `bedtools.Intersect` to support `-wa`, `-wb`, and `-s` flags.

Expand Down
4 changes: 2 additions & 2 deletions samtools.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ task Fastq {
command {
set -e
mkdir -p "$(dirname ~{outputRead1})"
samtools collate -u -O ~{inputBam} | \
samtools fastq \
~{true="-1" false="-s" defined(outputRead2)} ~{outputRead1} \
~{"-2 " + outputRead2} \
Expand All @@ -184,8 +185,7 @@ task Fastq {
~{true="-N" false="-n" appendReadNumber} \
~{true="-O" false="" outputQuality} \
~{"-c " + compressionLevel} \
~{"--threads " + threads} \
~{inputBam}
~{"--threads " + threads}
}

output {
Expand Down
Loading