-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtest.config
29 lines (26 loc) · 1.15 KB
/
test.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
* -------------------------------------------------
* Nextflow config file for running tests
* -------------------------------------------------
* Defines bundled input files and everything required
* to run a fast and simple test. Use as follows:
* nextflow run systemsgenetics/gemmaker -profile test,<docker/singularity>
*/
params {
config_profile_name = 'Test profile'
config_profile_description = 'Minimal test dataset to check pipeline function'
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = 6.GB
max_time = 48.h
// Input data
pipeline = "hisat2"
sras = "${baseDir}/assets/demo/SRA_IDs.txt"
input = "${baseDir}/assets/demo/*{1,2}.fastq"
skip_samples = "${baseDir}/assets/demo/samples2skip.txt"
kallisto_index_path = "${baseDir}/assets/demo/references/CORG.transcripts.Kallisto.indexed"
salmon_index_path = "${baseDir}/assets/demo/references/CORG.transcripts.Salmon.indexed"
hisat2_base_name = "CORG"
hisat2_index_dir = "${baseDir}/assets/demo/references/CORG.genome.Hisat2.indexed"
hisat2_gtf_file = "${baseDir}/assets/demo/references/CORG.transcripts.gtf"
}