mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 16:16:04 +00:00
Added rnavar pipeline config for Munin
This commit is contained in:
parent
71b17ff970
commit
b4d5330c0e
3 changed files with 103 additions and 0 deletions
42
conf/pipeline/rnavar/munin.config
Normal file
42
conf/pipeline/rnavar/munin.config
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
// rnavar/munin specific profile config
|
||||||
|
|
||||||
|
params {
|
||||||
|
// Specific nf-core/configs params
|
||||||
|
config_profile_contact = 'Praveen Raj (@praveenraj2018)'
|
||||||
|
config_profile_description = 'nf-core/rnavar MUNIN profile provided by nf-core/configs'
|
||||||
|
config_profile_url = 'https://ki.se/forskning/barntumorbanken'
|
||||||
|
|
||||||
|
// Specific nf-core/rnavar params
|
||||||
|
|
||||||
|
igenomes_ignore = true
|
||||||
|
|
||||||
|
// Genome references
|
||||||
|
fasta = '/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_genome.fa'
|
||||||
|
fasta_fai = '/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_genome.fa.fai'
|
||||||
|
gtf = '/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_annot.gtf'
|
||||||
|
gene_bed = '/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_annot.bed'
|
||||||
|
|
||||||
|
// Known genome resources
|
||||||
|
dbsnp = '/data1/references/annotations/GATK_bundle/dbsnp_146.hg38.vcf.gz'
|
||||||
|
dbsnp_tbi = '/data1/references/annotations/GATK_bundle/dbsnp_146.hg38.vcf.gz.tbi'
|
||||||
|
known_indels = '/data1/references/annotations/GATK_bundle/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz'
|
||||||
|
known_indels_tbi = '/data1/references/annotations/GATK_bundle/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz.tbi'
|
||||||
|
|
||||||
|
// STAR index
|
||||||
|
star_index = '/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/star150bp.idx/'
|
||||||
|
|
||||||
|
// Annotation settings
|
||||||
|
annotation_cache = true
|
||||||
|
cadd_cache = true
|
||||||
|
cadd_indels = '/data1/cache/CADD/v1.4/InDels.tsv.gz'
|
||||||
|
cadd_indels_tbi = '/data1/cache/CADD/v1.4/InDels.tsv.gz.tbi'
|
||||||
|
cadd_wg_snvs = '/data1/cache/CADD/v1.4/whole_genome_SNVs.tsv.gz'
|
||||||
|
cadd_wg_snvs_tbi = '/data1/cache/CADD/v1.4/whole_genome_SNVs.tsv.gz.tbi'
|
||||||
|
snpeff_cache = '/data1/cache/snpEff/'
|
||||||
|
snpeff_db = 'GRCh38.99'
|
||||||
|
vep_cache = '/data1/cache/VEP/'
|
||||||
|
vep_genome = 'GRCh38'
|
||||||
|
vep_species = 'homo_sapiens'
|
||||||
|
vep_cache_version = '99'
|
||||||
|
|
||||||
|
}
|
48
docs/pipeline/rnavar/munin.md
Normal file
48
docs/pipeline/rnavar/munin.md
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
# nf-core/configs: MUNIN rnavar specific configuration
|
||||||
|
|
||||||
|
Extra specific configuration for rnavar pipeline
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use, run the pipeline with `-profile munin`.
|
||||||
|
|
||||||
|
This will download and launch the rnavar specific [`munin.config`](../../../conf/pipeline/rnavar/munin.config) which has been pre-configured with a setup suitable for the `MUNIN` cluster.
|
||||||
|
|
||||||
|
Example: `nextflow run nf-core/rnavar -profile munin`
|
||||||
|
|
||||||
|
## rnavar specific configurations for MUNIN
|
||||||
|
|
||||||
|
Specific configurations for `MUNIN` has been made for rnavar.
|
||||||
|
|
||||||
|
Genome references
|
||||||
|
|
||||||
|
`fasta` set to `/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_genome.fa`
|
||||||
|
`fasta_fai` set to `/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_genome.fa.fai`
|
||||||
|
`gtf` set to `/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_annot.gtf`
|
||||||
|
`gene_bed` set to `/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/ref_annot.bed`
|
||||||
|
|
||||||
|
Known genome resources
|
||||||
|
|
||||||
|
`dbsnp set to` `/data1/references/annotations/GATK_bundle/dbsnp_146.hg38.vcf.gz`
|
||||||
|
`dbsnp_tbi set` to `/data1/references/annotations/GATK_bundle/dbsnp_146.hg38.vcf.gz.tbi`
|
||||||
|
`known_indels set` to `/data1/references/annotations/GATK_bundle/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz`
|
||||||
|
`known_indels_tbi` set to `/data1/references/annotations/GATK_bundle/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz.tbi`
|
||||||
|
|
||||||
|
STAR index
|
||||||
|
|
||||||
|
`star_index` set to `/data1/references/CTAT_GenomeLib_v37_Mar012021/GRCh38_gencode_v37_CTAT_lib_Mar012021.plug-n-play/ctat_genome_lib_build_dir/star150bp.idx/`
|
||||||
|
|
||||||
|
Variant annotation configurations
|
||||||
|
|
||||||
|
* Params `annotation_cache` and `cadd_cache` set to `true`
|
||||||
|
* Params `snpeff_db` set to `GRCh38.99`
|
||||||
|
* Params `vep_cache_version` set to `99`
|
||||||
|
* Params `vep_genome` set to `GRCh38`
|
||||||
|
* Path to `snpeff_cache`: `/data1/cache/snpEff/`
|
||||||
|
* Path to `vep_cache`: `/data1/cache/VEP/`
|
||||||
|
* Path to `pon`: `/data1/PON/vcfs/BTB.PON.vcf.gz`
|
||||||
|
* Path to `pon_index`: `/data1/PON/vcfs/BTB.PON.vcf.gz.tbi`
|
||||||
|
* Path to `cadd_indels`: `/data1/cache/CADD/v1.4/InDels.tsv.gz`
|
||||||
|
* Path to `cadd_indels_tbi`: `/data1/cache/CADD/v1.4/InDels.tsv.gz.tbi`
|
||||||
|
* Path to `cadd_wg_snvs`: `/data1/cache/CADD/v1.4/whole_genome_SNVs.tsv.gz`
|
||||||
|
* Path to `cadd_wg_snvs_tbi`: `/data1/cache/CADD/v1.4/whole_genome_SNVs.tsv.gz.tbi`
|
13
pipeline/rnavar.config
Normal file
13
pipeline/rnavar.config
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
/*
|
||||||
|
* -------------------------------------------------
|
||||||
|
* nfcore/rnavar custom profile Nextflow config file
|
||||||
|
* -------------------------------------------------
|
||||||
|
* Config options for custom environments.
|
||||||
|
* Cluster-specific config options should be saved
|
||||||
|
* in the conf/pipeline/rnavar folder and imported
|
||||||
|
* under a profile name here.
|
||||||
|
*/
|
||||||
|
|
||||||
|
profiles {
|
||||||
|
munin { includeConfig "${params.custom_config_base}/conf/pipeline/rnavar/munin.config" }
|
||||||
|
}
|
Loading…
Reference in a new issue