Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
f1204645
Commit
f1204645
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
a few more linting things
parent
86182571
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
common.wdl
+2
-1
2 additions, 1 deletion
common.wdl
fastqc.wdl
+3
-1
3 additions, 1 deletion
fastqc.wdl
gatk.wdl
+7
-9
7 additions, 9 deletions
gatk.wdl
gffcompare.wdl
+2
-2
2 additions, 2 deletions
gffcompare.wdl
with
14 additions
and
13 deletions
common.wdl
+
2
−
1
View file @
f1204645
...
...
@@ -121,7 +121,8 @@ task MapMd5 {
}
command {
cat ~{write_map(map)} | md5sum - | sed -e 's/ -//'
set -e -o pipefail
md5sum "~{write_map(map)}" | cut -f 1 -d ' '
}
output {
...
...
This diff is collapsed.
Click to expand it.
fastqc.wdl
+
3
−
1
View file @
f1204645
...
...
@@ -145,7 +145,9 @@ task GetConfiguration {
command <<<
set -e
fastqcDir=$(dirname $(readlink -f $(which fastqc)))
fastqcExe="$(command -v fastqc)"
fastqcPath="$(readlink -f $fastqcExe)"
fastqcDir="$(dirname $fastqcPath)"
mkdir Configuration
cp ${fastqcDir}/Configuration/adapter_list.txt Configuration/adapter_list.txt
cp ${fastqcDir}/Configuration/contaminant_list.txt Configuration/contaminant_list.txt
...
...
This diff is collapsed.
Click to expand it.
gatk.wdl
+
7
−
9
View file @
f1204645
...
...
@@ -530,16 +530,15 @@ task CombineVariants {
# build "-V:<ID> <file.vcf>" arguments according to IDs and VCFs to merge
# Make sure commands are run in bash
bash -c '
#!/usr/bin/env bash
set -eu
x
V_args=$(
bash -c '
set -eu
ids=(~{sep=" " identifiers})
vars=(~{sep=" " variantVcfs})
V_args=$(
for (( i = 0; i < ${#ids[@]}; ++i ))
do
printf -- "-V:%s %s " "${ids[i]}" "${vars[i]}"
done
)
for (( i = 0; i < ${#ids[@]}; ++i ))
do
printf -- "-V:%s %s " "${ids[i]}" "${vars[i]}"
done
')
java -Xmx~{javaXmx} -jar ~{installDir}/GenomeAnalysisTK.jar \
-T CombineVariants \
-R ~{referenceFasta} \
...
...
@@ -547,7 +546,6 @@ task CombineVariants {
--filteredrecordsmergetype ~{filteredRecordsMergeType} \
--out ~{outputPath} \
$V_args
'
>>>
output {
...
...
This diff is collapsed.
Click to expand it.
gffcompare.wdl
+
2
−
2
View file @
f1204645
...
...
@@ -31,8 +31,8 @@ task GffCompare {
File? noneFile # This is a wdl workaround. Please do not assign!
}
# This allows for the creation of output directories
String dirPrefix= if defined(outputDir)
then outputDir + "/"
String dirPrefix
= if defined(outputDir)
then
select_first([
outputDir
])
+ "/"
else ""
String totalPrefix = dirPrefix + outPrefix
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment