This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
forked from nf-core/sarek
-
Notifications
You must be signed in to change notification settings - Fork 7
Add VCFtools #568
Merged
Merged
Add VCFtools #568
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
194c306
add container for vcftools
maxulysse 9d64e64
update buildContainers.nf script
maxulysse 3ea0ecb
add process RunVcftools
maxulysse bee5b21
add container for RunVcftools process
maxulysse f45b46f
add vcftools to MultiQC report
maxulysse 6b62d0e
update helping and testing scripts
maxulysse d04ddd0
better output for ConcatVCF
maxulysse e2ec392
update README
maxulysse b30b166
aligning =
maxulysse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,6 +192,7 @@ def defineContainersList(){ | |
'snpeff', | ||
'snpeffgrch37', | ||
'snpeffgrch38', | ||
'vcftools', | ||
'vepgrch37', | ||
'vepgrch38' | ||
] | ||
|
@@ -211,8 +212,8 @@ def helpMessage() { | |
log.info " Default: all" | ||
log.info " Possible values:" | ||
log.info " all, fastqc, freebayes, gatk, igvtools, multiqc, mutect1" | ||
log.info " picard, qualimap, r-base, runallelecount, sarek" | ||
log.info " snpeff, snpeffgrch37, snpeffgrch38, vepgrch37, vepgrch38" | ||
log.info " picard, qualimap, r-base, runallelecount, sarek, snpeff" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have fastqc, multiqc, qualimap, vcftools, as separate containers: these are all QC tools, is it possible to keep them separate, or can we merge these containers sometime? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That could be a good idea, I'll think about it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
log.info " snpeffgrch37, snpeffgrch38, vcftools, vepgrch37, vepgrch38" | ||
log.info " --docker: Build containers using Docker" | ||
log.info " --help" | ||
log.info " you're reading it" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM nfcore/base:latest | ||
|
||
LABEL \ | ||
author="Maxime Garcia" \ | ||
description="vcftools image used in Sarek 2.0" \ | ||
maintainer="[email protected]" | ||
|
||
COPY environment.yml / | ||
|
||
RUN \ | ||
conda env create -f /environment.yml && \ | ||
conda clean -a | ||
|
||
# Export PATH | ||
ENV PATH /opt/conda/envs/sarek-vcftools-2.0/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# You can use this file to create a conda environment: | ||
# conda env create -f environment.yml | ||
name: sarek-vcftools-2.0 | ||
channels: | ||
- defaults | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- vcftools=0.1.15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be mutect2 I guess
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No,
mutect2
is shipped with theGATK
containerThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IC, of course. Shall I merge this first, or shall I wait for #567 ?