You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
include { NFCORE_FETCHNGS } from "$projectDir/subworkflows/fetchngs/main" addParams(
outdir: "$params.outdir/fetchngs",
nf_core_pipeline: params.workflow
)
if ( params.workflow == 'rnaseq' ) {
include { NFCORE_RNASEQ } from "$projectDir/subworkflows/rnaseq/main" addParams(
input: "$params.outdir/fetchngs/samplesheet/samplesheet.csv", // This should be ignored as the samplesheet comes from the input channel, but may be necessary for parameter validation.
outdir: "$params.outdir/rnaseq"
)
} else if ( params.workflow == 'viralrecon' ) {
include { NFCORE_VIRALRECON } from "$projectDir/subworkflows/viralrecon/main" addParams(
input: "$params.outdir/fetchngs/samplesheet/samplesheet.csv", // This should be ignored as the samplesheet comes from the input channel, but may be necessary for parameter validation.