Skip to content

Commit

Permalink
Change paths to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Jan 28, 2021
1 parent a590bab commit 1560e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ workflow {
* SUBWORKFLOW: Get SRA run information for public database ids, download and md5sum check FastQ files, auto-create samplesheet
*/
if (params.public_data_ids) {
include { SRA_DOWNLOAD } from './sra_download' addParams( summary_params: summary_params )
include { SRA_DOWNLOAD } from './workflows/sra_download' addParams( summary_params: summary_params )
SRA_DOWNLOAD ()

/*
* SUBWORKFLOW: Variant analysis for Illumina data
*/
} else if (params.platform == 'illumina') {
include { ILLUMINA } from './illumina' addParams( summary_params: summary_params )
include { ILLUMINA } from './workflows/illumina' addParams( summary_params: summary_params )
ILLUMINA ()
}
}
Expand Down

0 comments on commit 1560e72

Please sign in to comment.