Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
biowdl
tasks
Commits
734c4037
Commit
734c4037
authored
Jun 14, 2021
by
Boom
Browse files
Try another approach.
parent
adee85e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
bam2fastx.wdl
View file @
734c4037
...
...
@@ -103,16 +103,26 @@ task Bam2Fastq {
String dockerImage = "quay.io/biocontainers/bam2fastx:1.3.1--hf05d43a_1"
}
command
{
command
<<<
set -e
mkdir -p "$(dirname ~{outputPrefix})"
# Localise the bam and pbi files so they are next to each other in the
# current folder.
bamFiles=""
for bamFile in ~{sep=" " bam}
do
fullPathBam=$(readlink -f ${bamFile})
bamFiles=${bamFiles}" ${fullPathBam}"
done
bam2fastq \
--output ~{outputPrefix} \
-c ~{compressionLevel} \
~{true="--split-barcodes" false="" splitByBarcode} \
~{"--seqid-prefix " + seqIdPrefix} \
~{sep=" " bam
}
}
${bamFiles
}
>>>
output {
File fastqFile = outputPrefix + ".fastq.gz"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment