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
eca9a4b6
Unverified
Commit
eca9a4b6
authored
6 years ago
by
Peter van 't Hof
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into quantification
parents
413953d8
385a1dfc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4
Add quantification tools
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gatk.wdl
+25
-0
25 additions, 0 deletions
gatk.wdl
with
25 additions
and
0 deletions
gatk.wdl
+
25
−
0
View file @
eca9a4b6
...
...
@@ -194,3 +194,28 @@ task CombineGVCFs {
File output_gvcf_index = output_basename + ".vcf.gz.tbi"
}
}
task SplitNCigarReads {
String? preCommand
File input_bam
File ref_fasta
File ref_fasta_index
File ref_dict
String output_bam
String gatk_jar
command {
set -e -o pipefail
${preCommand}
java -Xms4G -jar ${gatk_jar} \
-I ${input_bam} \
-R ${ref_fasta} \
-O ${output_bam} # might have to be -o depending on GATK version
}
output {
File bam = output_bam
File bam_index = output_bam + ".bai"
}
}
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