forked from nf-core/sarek
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nf-core#1663 from nf-core/massive_conda_update
Massive conda update
- Loading branch information
Showing
400 changed files
with
18,335 additions
and
7,910 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 |
---|---|---|
|
@@ -12,12 +12,15 @@ on: | |
- dev | ||
|
||
env: | ||
NFTEST_VER: "0.9.0" | ||
NFT_DIFF: "pdiff" | ||
NFT_DIFF_ARGS: "--line-numbers --width 120 --expand-tabs=2" | ||
NFT_VER: "0.9.0" | ||
NFT_WORKDIR: "~" | ||
NXF_ANSI_LOG: false | ||
TEST_DATA_BASE: "${{ github.workspace }}/test-datasets" | ||
SENTIEON_LICENSE_BASE64: ${{ secrets.SENTIEON_LICENSE_BASE64 }} | ||
NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity | ||
NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity | ||
SENTIEON_LICENSE_BASE64: ${{ secrets.SENTIEON_LICENSE_BASE64 }} | ||
TEST_DATA_BASE: "${{ github.workspace }}/test-datasets" | ||
|
||
# Cancel if a newer run is started | ||
concurrency: | ||
|
@@ -238,13 +241,16 @@ jobs: | |
- tags: "cnvkit/antitarget" | ||
- tags: "cnvkit/batch" | ||
- tags: "cnvkit/reference" | ||
- tags: "deepvariant" | ||
- tags: "controlfreec/assesssignificance" | ||
- tags: "controlfreec/freec" | ||
- tags: "deepvariant/rundeepvariant" | ||
- tags: "dragmap/align" | ||
- tags: "dragmap/hashtable" | ||
- tags: "ensemblvep/download" | ||
- tags: "ensemblvep/vep" | ||
- tags: "fastp" | ||
- tags: "fastqc" | ||
- tags: "fgbio/callmolecularconsensusreads" | ||
- tags: "fgbio/fastqtobam" | ||
- tags: "freebayes" | ||
- tags: "gatk4/applybqsr" | ||
|
@@ -266,18 +272,17 @@ jobs: | |
- tags: "samtools/convert" | ||
- tags: "samtools/mpileup" | ||
- tags: "samtools/stats" | ||
- tags: "sentieon/bwamem" | ||
- tags: "sentieon/haplotyper" | ||
- tags: "snpeff/snpeff" | ||
- tags: "spring/decompress" | ||
- tags: "strelka/germline" | ||
- tags: "strelka/somatic" | ||
- tags: "subworkflows/utils_nfvalidation_plugin" | ||
- tags: "tabix/bgziptabix" | ||
- tags: "tabix/tabix" | ||
- tags: "tiddit/sv" | ||
- tags: "untar" | ||
- tags: "pipeline_sarek" | ||
include: | ||
- tags: "pipeline_sarek" | ||
profile: "test,docker" | ||
|
||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
|
@@ -295,7 +300,7 @@ jobs: | |
- name: Install nf-test | ||
uses: nf-core/setup-nf-test@v1 | ||
with: | ||
version: ${{ env.NFTEST_VER }} | ||
version: ${{ env.NFT_VER }} | ||
|
||
- name: Setup apptainer | ||
if: matrix.profile == 'singularity' | ||
|
@@ -339,13 +344,15 @@ jobs: | |
- name: Disk space cleanup | ||
uses: jlumbroso/[email protected] | ||
|
||
# Test the module | ||
# Test the component | ||
- name: Run nf-test | ||
run: | | ||
nf-test test \ | ||
--profile=${{ matrix.profile }} \ | ||
--profile="+${{ matrix.profile }}" \ | ||
--tag ${{ matrix.tags }} \ | ||
--tap=test.tap \ | ||
--junitxml=test.xml \ | ||
--debug \ | ||
--verbose | ||
confirm-pass: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
Use as follows: | ||
nextflow run nf-core/sarek -profile test,<extra_test_profile>,<docker/singularity> --outdir <OUTDIR> | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
*/ | ||
|
||
params { | ||
input = "${projectDir}/tests/csv/3.0/mapped_single_cram.csv" | ||
genome = null | ||
igenomes_ignore = true | ||
fasta = "${params.modules_testdata_base_path}/genomics/homo_sapiens/genome/genome.fasta" | ||
fasta_fai = "${params.modules_testdata_base_path}/genomics/homo_sapiens/genome/genome.fasta.fai" | ||
intervals = "${params.modules_testdata_base_path}/genomics/homo_sapiens/genome/genome.bed" | ||
nucleotides_per_second = 20 | ||
step = 'variant_calling' | ||
tools = null | ||
wes = true | ||
} |
Oops, something went wrong.