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
f2cc5cc0
Commit
f2cc5cc0
authored
3 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
add LinxVisualisations
parent
5e821d51
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hmftools.wdl
+55
-0
55 additions, 0 deletions
hmftools.wdl
with
55 additions
and
0 deletions
hmftools.wdl
+
55
−
0
View file @
f2cc5cc0
...
...
@@ -622,6 +622,61 @@ task Linx {
}
}
task LinxVisualisations {
input {
String outputDir = "./linx_visualisation"
String sample
String refGenomeVersion
Array[File]+ linxOutput
Boolean plotReportable = true
String memory = "9G"
String javaXmx = "8G"
Int timeMinutes = 10
String dockerImage = "quay.io/biocontainers/hmftools-linx:1.18--hdfd78af_0"
}
command {
set -e
mkdir -p ~{outputDir}
java -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
-cp /usr/local/share/hmftools-linx-1.18-0/sv-linx.jar \
com.hartwig.hmftools.linx.visualiser.SvVisualiser \
-sample ~{sample} \
-ref_genome_version ~{refGenomeVersion} \
-circos /usr/local/bin/circos \
-vis_file_dir ~{sub(linxOutput[0], basename(linxOutput[0]), "")} \
-data_out ~{outputDir}/circos \
-plot_out ~{outputDir}/plot \
~{if plotReportable then "-plot_reportable" else ""}
}
output {
}
runtime {
time_minutes: timeMinutes # !UnknownRuntimeKey
docker: dockerImage
memory: memory
}
parameter_meta {
outputDir: {description: "The directory the outputs will be written to.", category: "required"}
sample: {description: "The sample's name.", category: "required"}
refGenomeVersion: {description: "The version of the genome assembly used for alignment. Either \"37\" or \"38\".", category: "required"}
linxOutput: {description: "The directory containing the linx output.", category: "required"}
plotReportable: {description: "Equivalent to the -plot_reportable flag.", category: "advanced"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
}
task Pave {
input {
String outputDir = "./"
...
...
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