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
Merge requests
!43
fix somatic tasks and add supporting tasks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix somatic tasks and add supporting tasks
somatic
into
develop
Overview
6
Commits
7
Pipelines
0
Changes
6
Merged
Ruben Vorderman
requested to merge
somatic
into
develop
6 years ago
Overview
6
Commits
7
Pipelines
0
Changes
6
Expand
Created by: DavyCats
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
4c1e509b
7 commits,
6 years ago
6 files
+
220
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
gatk.wdl
+
4
−
3
Options
@@ -142,8 +142,8 @@ task CombineGVCFs {
-V ~{sep=' -V ' gvcfFiles} \
-L ~{sep=' -L ' intervals}
else # TODO this should be handeled in wdl
ln -sf ~{
select_first(
gvcfFiles
)
} ~{outputPath}
ln -sf ~{
select_first(
gvcfFileIndexes
)
} ~{outputPath}.tbi
ln -sf ~{gvcfFiles
[0]
} ~{outputPath}
ln -sf ~{gvcfFileIndexes
[0]
} ~{outputPath}.tbi
fi
}
@@ -298,7 +298,7 @@ task MuTect2 {
String? preCommand
Array[File]+ inputBams
File inputBamIndex
Array[
File
]+
inputBamIndex
File refFasta
File refFastaIndex
File refDict
@@ -331,6 +331,7 @@ task MuTect2 {
output {
File vcfFile = outputVcf
File vcfIndex = outputVcf + ".tbi"
}
runtime {
Loading