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
25f49471
Unverified
Commit
25f49471
authored
3 years ago
by
Cats
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #300 from biowdl/fix_gridss_tbi
run tabix if vcf index is missing in gridss
parents
9ca13a0a
688f9851
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+5
-3
5 additions, 3 deletions
CHANGELOG.md
gridss.wdl
+6
-0
6 additions, 0 deletions
gridss.wdl
with
11 additions
and
3 deletions
CHANGELOG.md
+
5
−
3
View file @
25f49471
...
...
@@ -9,7 +9,9 @@ that users understand how the changes affect the new version.
-->
version 5.1.0-dev
---------------------------
+
Add a script to subtract UMI's from the read name and add them as
+
The GRIDSS task will now run tabix separately if GRIDSS doesn't
produce a vcf index.
+
Add a script to subtract UMI's from the read name and add them as
a BAM tag for each BAM record. The script is in umi.BamReadNameToUmiTag.
+
Add fgbio.AnnotateBamWithUmis.
+
Add picard.UmiAwareMarkDuplicatesWithMateCigar.
...
...
@@ -32,7 +34,7 @@ version 5.1.0-dev
+
Sage
+
VirusInterpreter
+
Added a task for VirusBreakend.
+
Added a task for GridssAnnotateVcfRepeatmasker.
+
Added a task for GridssAnnotateVcfRepeatmasker.
+
Bumped GRIDSS version to 2.12.2.
+
Adjusted GRIDSS runtime settings.
+
Added optional inputs to GRIDSS:
...
...
@@ -151,7 +153,7 @@ version 4.0.0
+
Picard MergeVcf now uses compression level 1 by default.
+
bwa mem, bwa mem+kit and hisat2 have their samtools sort threads tweaked. The
number of threads is now related to the number of threads on the aligner.
Using more threads reduces the chance of the samtools sort pipe getting
Using more threads reduces the chance of the samtools sort pipe getting
blocked if it's full.
+
Renamed a few inputs in centrifuge.wdl, isoseq3.wdl, talon.wdl,
transcriptclean.wdl to be more descriptive.
...
...
This diff is collapsed.
Click to expand it.
gridss.wdl
+
6
−
0
View file @
25f49471
...
...
@@ -116,6 +116,12 @@ task GRIDSS {
~{normalBam} \
~{tumorBam}
samtools index ~{outputPrefix}_assembly.bam ~{outputPrefix}_assembly.bai
# For some reason the VCF index is sometimes missing
if [ ! -e ~{outputPrefix}.vcf.gz.tbi ]
then
tabix ~{outputPrefix}.vcf.gz
fi
}
output {
...
...
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