Skip to content

Commit

Permalink
fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
l-mansouri committed Nov 20, 2023
1 parent b89afe1 commit 502bb77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/data/data.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// If there is any data that needs to be included in the config, it should be placed here using "${params.reference_data_bucket}/path/to/data"
params {
exomiser_profile{
exomiser_data_profile{
'test'{
data_bundle = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/hg38"
exomiser_phenotype_data = "${params.reference_data_bucket}/pipelines/exomiser/very_fake/2102_phenotype"
Expand Down
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ch_combined = ch_vcf_paths2.join(ch_to_join, by: 0).view()
---------------------------------------------------*/

if (!params.data_bundle && params.exomiser_profile_files){
exomiser_data=params.exomiser_profile[params.exomiser_profile_files].data_bundle
exomiser_data=params.exomiser_data_profile[params.exomiser_profile_files].data_bundle
Channel.fromPath("${params.exomiser_data}")
.set{ch_exomiser_data }
}else{
Expand Down
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ profiles {
}

includeConfig 'conf/resources.config'
includeConfig 'conf/data/data.config'

process {
echo = params.echo
Expand Down

0 comments on commit 502bb77

Please sign in to comment.