2020-04-09 11:02:36 -04:00
|
|
|
/*
|
|
|
|
* -------------------------------------------------
|
|
|
|
* nfcore/viralrecon custom profile Nextflow config file
|
|
|
|
* -------------------------------------------------
|
|
|
|
* Defines viral reference genomes for all environments.
|
|
|
|
*/
|
2021-02-15 11:58:30 -05:00
|
|
|
|
2020-04-09 11:02:36 -04:00
|
|
|
params {
|
|
|
|
// Genome reference file paths
|
|
|
|
genomes {
|
|
|
|
'NC_045512.2' {
|
2021-02-15 11:58:30 -05:00
|
|
|
// This version of the reference has been kept here for backwards compatibility.
|
|
|
|
// Please use 'MN908947.3' if possible because all primer sets are available / have been pre-prepared relative to that assembly
|
2021-02-16 08:17:16 -05:00
|
|
|
fasta = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/NC_045512.2/GCF_009858895.2_ASM985889v3_genomic.200409.fna.gz'
|
|
|
|
gff = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/NC_045512.2/GCF_009858895.2_ASM985889v3_genomic.200409.gff.gz'
|
2020-04-09 13:22:41 -04:00
|
|
|
}
|
|
|
|
'MN908947.3' {
|
2021-02-16 08:17:16 -05:00
|
|
|
fasta = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/MN908947.3/GCA_009858895.3_ASM985889v3_genomic.200409.fna.gz'
|
|
|
|
gff = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/MN908947.3/GCA_009858895.3_ASM985889v3_genomic.200409.gff.gz'
|
2021-02-15 11:58:30 -05:00
|
|
|
primer_sets {
|
|
|
|
artic {
|
|
|
|
'1' {
|
|
|
|
fasta = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V1/nCoV-2019.reference.fasta'
|
2021-02-16 08:17:16 -05:00
|
|
|
gff = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/MN908947.3/GCA_009858895.3_ASM985889v3_genomic.200409.gff.gz'
|
2021-02-16 05:28:32 -05:00
|
|
|
primer_bed = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V1/nCoV-2019.primer.bed'
|
2021-02-15 12:02:26 -05:00
|
|
|
scheme = 'nCoV-2019'
|
2021-02-15 11:58:30 -05:00
|
|
|
}
|
|
|
|
'2' {
|
|
|
|
fasta = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V2/nCoV-2019.reference.fasta'
|
2021-02-16 08:17:16 -05:00
|
|
|
gff = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/MN908947.3/GCA_009858895.3_ASM985889v3_genomic.200409.gff.gz'
|
2021-02-16 05:28:32 -05:00
|
|
|
primer_bed = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V2/nCoV-2019.primer.bed'
|
2021-02-15 12:02:26 -05:00
|
|
|
scheme = 'nCoV-2019'
|
2021-02-15 11:58:30 -05:00
|
|
|
}
|
|
|
|
'3' {
|
|
|
|
fasta = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V3/nCoV-2019.reference.fasta'
|
2021-02-16 08:17:16 -05:00
|
|
|
gff = 'https://github.com/nf-core/test-datasets/raw/viralrecon/genome/MN908947.3/GCA_009858895.3_ASM985889v3_genomic.200409.gff.gz'
|
2021-02-16 05:28:32 -05:00
|
|
|
primer_bed = 'https://github.com/artic-network/primer-schemes/raw/master/nCoV-2019/V3/nCoV-2019.primer.bed'
|
2021-02-15 12:02:26 -05:00
|
|
|
scheme = 'nCoV-2019'
|
2021-02-15 11:58:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-09 11:02:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|