mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Use submodules for test data
This commit is contained in:
parent
36df850298
commit
93f7b26aa2
5 changed files with 8 additions and 3 deletions
1
.github/workflows/fastqc.yml
vendored
1
.github/workflows/fastqc.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
|
||||
# Check out the repository
|
||||
- uses: actions/checkout@v1
|
||||
submodules: true
|
||||
|
||||
- name: Install Nextflow
|
||||
run: |
|
||||
|
|
1
.github/workflows/samtools_index.yml
vendored
1
.github/workflows/samtools_index.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
|
||||
# Check out the repository
|
||||
- uses: actions/checkout@v1
|
||||
submodules: true
|
||||
|
||||
- name: Install Nextflow
|
||||
run: |
|
||||
|
|
1
.github/workflows/samtools_sort.yml
vendored
1
.github/workflows/samtools_sort.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
|
||||
# Check out the repository
|
||||
- uses: actions/checkout@v1
|
||||
submodules: true
|
||||
|
||||
- name: Install Nextflow
|
||||
run: |
|
||||
|
|
1
.github/workflows/trim_galore.yml
vendored
1
.github/workflows/trim_galore.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
|||
|
||||
# Check out the repository
|
||||
- uses: actions/checkout@v1
|
||||
submodules: true
|
||||
|
||||
- name: Install Nextflow
|
||||
run: |
|
||||
|
|
|
@ -5,9 +5,10 @@ include '../main.nf' params(params)
|
|||
|
||||
// Define input channels
|
||||
readPaths = [
|
||||
['SRR389222_sub1', ['https://github.com/nf-core/test-datasets/raw/methylseq/testdata/SRR389222_sub1.fastq.gz']],
|
||||
['SRR389222_sub2', ['https://github.com/nf-core/test-datasets/raw/methylseq/testdata/SRR389222_sub2.fastq.gz']],
|
||||
['SRR389222_sub3', ['https://github.com/nf-core/test-datasets/raw/methylseq/testdata/SRR389222_sub3.fastq.gz']]
|
||||
['SRR4238351', ['../../../test-datasets/tools/fastqc/input/SRR4238351_subsamp.fastq.gz']],
|
||||
['SRR4238355', ['../../../test-datasets/tools/fastqc/input/SRR4238355_subsamp.fastq.gz']],
|
||||
['SRR4238359', ['../../../test-datasets/tools/fastqc/input/SRR4238359_subsamp.fastq.gz']],
|
||||
['SRR4238379', ['../../../test-datasets/tools/fastqc/input/SRR4238379_subsamp.fastq.gz']]
|
||||
]
|
||||
Channel
|
||||
.from(readPaths)
|
||||
|
|
Loading…
Reference in a new issue