-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
Release 1.0.0 See merge request tron/tron-bam-preprocessing!2
- Loading branch information
Showing
19 changed files
with
76,491 additions
and
137 deletions.
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
.idea | ||
work | ||
output | ||
.nextflow* | ||
report.html* | ||
timeline.html* | ||
trace.txt* | ||
dag.dot* | ||
*.swp |
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,21 @@ | ||
image: openjdk:11.0.10-jre-buster | ||
|
||
|
||
before_script: | ||
- java -version | ||
- apt-get update && apt-get --assume-yes install wget make procps | ||
- wget -qO- https://get.nextflow.io | bash && cp nextflow /usr/local/bin/nextflow | ||
- nextflow help | ||
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
- mkdir /root/.conda | ||
- bash Miniconda3-latest-Linux-x86_64.sh -b && cp /root/miniconda3/bin/* /usr/local/bin/ | ||
- rm -f Miniconda3-latest-Linux-x86_64.sh | ||
- conda --version | ||
|
||
stages: | ||
- test | ||
|
||
test: | ||
stage: test | ||
script: | ||
- make clean test |
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 @@ | ||
clean: | ||
rm -rf output | ||
#rm -rf work | ||
rm -f report.html* | ||
rm -f timeline.html* | ||
rm -f trace.txt* | ||
rm -f dag.dot* | ||
rm -f .nextflow.log* | ||
rm -rf .nextflow* | ||
|
||
test: | ||
nextflow main.nf -profile test,conda --output output/test1 | ||
nextflow main.nf -profile test,conda --skip_bqsr --output output/test2 | ||
nextflow main.nf -profile test,conda --skip_realignment --output output/test3 | ||
nextflow main.nf -profile test,conda --skip_deduplication --output output/test4 |
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,10 @@ | ||
# You can use this file to create a conda environment for this pipeline: | ||
# conda env create -f environment.yml | ||
name: tronflow-bam-preprocessing-1.0.0 | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
dependencies: | ||
- bioconda::gatk4=4.2.0.0 | ||
- bioconda::gatk=3.8 |
Oops, something went wrong.