forked from nf-core/phaseimpute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_beagle5.config
More file actions
47 lines (36 loc) · 1.38 KB
/
test_beagle5.config
File metadata and controls
47 lines (36 loc) · 1.38 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running minimal tests with BEAGLE5
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines input files and everything required to run a fast and simple pipeline test.
Use as follows:
nextflow run nf-core/phaseimpute -profile test_beagle5,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '8.GB',
time: '1.h'
]
}
params {
config_profile_name = 'Test profile for BEAGLE5'
config_profile_description = 'Minimal test dataset to check BEAGLE5 imputation function'
// Input data
input = "${projectDir}/tests/csv/sample_vcf.csv"
input_region = "${projectDir}/tests/csv/region.csv"
panel = "${projectDir}/tests/csv/panel.csv"
// Map file
map = "${projectDir}/tests/csv/map_plink.csv"
// Region file
input_region = "${projectDir}/tests/csv/region.csv"
// Genome references
fasta = params.pipelines_testdata_base_path + "hum_data/reference_genome/GRCh38.s.fa.gz"
// Pipeline steps
steps = 'impute'
// Imputation tools
tools = 'beagle5'
// Main options
outdir = 'results'
}