Skip to content

Commit

Permalink
changed param name
Browse files Browse the repository at this point in the history
  • Loading branch information
l-mansouri committed Nov 20, 2023
1 parent c9fb9c9 commit 4171612
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions conf/data/data.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
params {
exomiser_profile{
'test'{
exomiser_data = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/hg38"
data_bundle = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/hg38"
exomiser_phenotype_data = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/2102_phenotype"
cadd_snvs = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/cadd_snvs"
phenix_data = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/phenix"
}
'full'{
exomiser_data = "${params.reference_data_bucket}/pipelines/exomiser-data-bundle"
data_bundle = "${params.reference_data_bucket}/pipelines/exomiser-data-bundle"
}
}

Expand Down
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ if(params.exomiser_data){
.set{ch_exomiser_data }
}
else{
exomiser_data=params.exomiser_profile[params.params.exomiser_profile_files].exomiser_data
exomiser_data=params.exomiser_profile[params.params.exomiser_profile_files].data_bundle
Channel.fromPath("${params.exomiser_data}")
.set{ch_exomiser_data }

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ params {
sample_name = null
config = 'conf/executors/standard.config'
exomiser_profile_files = 'full' // 'test' for small mock data, 'full' for full data (120GB)
exomiser_data = null
data_bundle = null
exomiser_phenotype_data = null
cadd_snvs = null
phenix_data = null
Expand Down

0 comments on commit 4171612

Please sign in to comment.