-
Notifications
You must be signed in to change notification settings - Fork 7
GATK4 first round without MuTect1 and indel realignment #607
Changes from 19 commits
c9b2cd9
428c893
6f438ad
e00872b
f6c60bf
a3f102d
576c171
0aea380
72a1b50
c6137bf
bba73f1
70a3584
a836057
733e2c4
449f939
3fb6dc6
0c71f0a
da3be40
4db0d5d
efd11c6
e81e100
0876a89
7cf77b6
e2cacd7
735463b
a64dd3c
c14fa8e
5ab4491
537faa8
24b1ffb
a5b3f7c
6ebed7a
58bab13
12826fd
b21dc68
db137ce
cb7e228
97d3fc5
98cf879
393da8b
9d20c68
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
FROM debian:8.9 | ||
FROM nfcore/base:latest | ||
|
||
LABEL \ | ||
author="Maxime Garcia" \ | ||
authors="Maxime.Gracia@scilifelab.se, Szilveszter.Juhos@scilifelab.se" \ | ||
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. typo in my name. |
||
description="Image with tools used in Sarek" \ | ||
maintainer="maxime.garcia@scilifelab.se" | ||
maintainers="Maxime.Gracia@scilifelab.se, Szilveszter.Juhos@scilifelab.se" | ||
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. If I remember well, we can use whichever label we want, but
|
||
|
||
# Export PATH | ||
ENV \ | ||
MANTA_INSTALL_PATH=/opt/manta \ | ||
PATH=/opt/bcftools/bin:/opt/htslib/bin:/opt/samtools/bin:$PATH \ | ||
STRELKA_INSTALL_PATH=/opt/strelka | ||
|
||
# Build container | ||
ADD \ | ||
build.sh /usr/bin/ | ||
RUN \ | ||
build.sh | ||
COPY environment.yml / | ||
RUN conda env update -n root -f /environment.yml && conda clean -a |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# You can use this file to create a conda environment for this pipeline: | ||
# conda env create -f environment.yml | ||
name: sarek-core | ||
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 should specify a version here 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. can we just leave as |
||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
|
||
dependencies: | ||
- bcftools=1.8 | ||
- bwa=0.7.17 | ||
- conda-forge::openjdk=8.0.144 # Needed for FastQC docker - see bioconda/bioconda-recipes#5026 | ||
- fastqc=0.11.7 | ||
- freebayes=1.2.0 | ||
- gatk4=4.0.3.0 | ||
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. You can use the 4.0.4.0, the executable is back to being 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. Fine, will change the name in processes as well. In fact we have 4.0.6.0 also 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. Even better ;-) |
||
- htslib=1.7 | ||
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. You should use the 1.8 here. 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. OK, done but will check since I got a feeling that 1.8 has compatibility issues 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. OK, strange, but good to know if you can confirm that 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. There is even 1.9 out already! You could already skip 1.8 ... |
||
- igvtools=2.3.93 | ||
- manta=1.3.0 | ||
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. Since we're updating, we can try the 1.4.0 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. OK, done |
||
- multiqc=1.5 | ||
- qualimap=2.2.2a | ||
- samtools=1.8 | ||
- strelka=2.9.3 | ||
- vcfanno=0.2.8 | ||
- vcftools=0.1.15 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM nfcore/base:latest | ||
|
||
LABEL \ | ||
author="Szilveszter Juhos" \ | ||
description="vcfanno Image for Sarek" \ | ||
maintainer="szilveszter.juhos@scilifelab.se" | ||
|
||
COPY environment.yml / | ||
|
||
RUN \ | ||
conda env create -f /environment.yml && \ | ||
conda clean -a | ||
|
||
# Export PATH | ||
ENV PATH /opt/conda/envs/sarek-vcfanno-2.0/bin:$PATH |
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.
In fact, we annote all available vcfs by default, so it's not really a question of germline/somatic, but really more a question of which tools was run