Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IMP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
IMP-dev
IMP
Commits
5f1bb06d
Commit
5f1bb06d
authored
9 years ago
by
Shaman Narayanasamy
Browse files
Options
Downloads
Patches
Plain Diff
Comment out VCF merging step since it is taking too damn long
parent
2760564e
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
rules/Analysis/MGMT.rules
+13
-13
13 additions, 13 deletions
rules/Analysis/MGMT.rules
rules/Analysis/master.rules
+2
-2
2 additions, 2 deletions
rules/Analysis/master.rules
with
15 additions
and
15 deletions
rules/Analysis/MGMT.rules
+
13
−
13
View file @
5f1bb06d
...
...
@@ -121,7 +121,7 @@ rule ANALYSIS_MG_CALL_VARIANT:
"%s/MGMT.assembly.merged.fa" % A_OUT,
"%s/MG.reads.sorted.bam" % A_OUT,
output:
"%s/MG.variants.isec.vcf.gz" % AN_OUT,
#
"%s/MG.variants.isec.vcf.gz" % AN_OUT,
"%s/MG.variants.samtools.vcf.gz" % AN_OUT,
"%s/MG.variants.freebayes.vcf.gz" % AN_OUT,
"%s/MG.variants.platypus.vcf.gz" % AN_OUT
...
...
@@ -169,14 +169,14 @@ rule ANALYSIS_MG_CALL_VARIANT:
bgzip -c $VCF_PLT > {output[3]}
tabix -f -p vcf {output[3]}
### "Merging outputs from all the callers"
## Must remove colons from the contig names in upstream steps. Unable to merge the variants
## due to this problem
vcf-isec -f -a -n +2 {output[1]} {output[2]} > {AN_OUT}/MG.variants.isec.vcf
###
#
"Merging outputs from all the callers"
##
#
Must remove colons from the contig names in upstream steps. Unable to merge the variants
##
#
due to this problem
#
vcf-isec -f -a -n +2 {output[1]} {output[2]} > {AN_OUT}/MG.variants.isec.vcf
# Compress and index the output.
bgzip -c {AN_OUT}/MG.variants.isec.vcf > {output[0]}
tabix -f -p vcf {output[0]}
#
#
Compress and index the output.
#
bgzip -c {AN_OUT}/MG.variants.isec.vcf > {output[0]}
#
tabix -f -p vcf {output[0]}
# Clean up directory
echo "Cleaning up directory"
...
...
@@ -193,7 +193,7 @@ rule ANALYSIS_MT_CALL_VARIANT:
"%s/MGMT.assembly.merged.fa" % A_OUT,
"%s/MT.reads.sorted.bam" % A_OUT,
output:
"%s/MT.variants.isec.vcf.gz" % AN_OUT,
#
"%s/MT.variants.isec.vcf.gz" % AN_OUT,
"%s/MT.variants.samtools.vcf.gz" % AN_OUT,
"%s/MT.variants.freebayes.vcf.gz" % AN_OUT,
"%s/MT.variants.platypus.vcf.gz" % AN_OUT
...
...
@@ -244,11 +244,11 @@ rule ANALYSIS_MT_CALL_VARIANT:
### "Merging outputs from all the callers"
## Must remove colons from the contig names in upstream steps. Unable to merge the variants
## due to this problem
vcf-isec -f -a -n +2 {output[1]} {output[2]} > {AN_OUT}/MT.variants.isec.vcf
#
vcf-isec -f -a -n +2 {output[1]} {output[2]} > {AN_OUT}/MT.variants.isec.vcf
# Compress and index the output.
bgzip -c {AN_OUT}/MT.variants.isec.vcf > {output[0]}
tabix -f -p vcf {output[0]}
#
#
Compress and index the output.
#
bgzip -c {AN_OUT}/MT.variants.isec.vcf > {output[0]}
#
tabix -f -p vcf {output[0]}
# Clean up directory
echo "Cleaning up directory"
...
...
This diff is collapsed.
Click to expand it.
rules/Analysis/master.rules
+
2
−
2
View file @
5f1bb06d
...
...
@@ -78,7 +78,7 @@ ANALYSIS_OUTPUT_FILES = {
"MG.gene_depth.avg",
"MG.gene.len",
"MG.prokkaID2ec.txt",
"MG.variants.isec.vcf.gz",
#
"MG.variants.isec.vcf.gz",
"MG.variants.samtools.vcf.gz",
"MG.variants.freebayes.vcf.gz",
"MG.variants.platypus.vcf.gz",
...
...
@@ -105,7 +105,7 @@ ANALYSIS_OUTPUT_FILES = {
"MT.gene_depth.avg",
"MT.gene.len",
"MT.prokkaID2ec.txt",
"MT.variants.isec.vcf.gz",
#
"MT.variants.isec.vcf.gz",
"MT.variants.samtools.vcf.gz",
"MT.variants.freebayes.vcf.gz",
"MT.variants.platypus.vcf.gz",
...
...
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