Skip to content

Commit

Permalink
Enable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
grst committed Mar 7, 2024
1 parent 070f123 commit 9460011
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 23 deletions.
40 changes: 19 additions & 21 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -82,27 +82,25 @@ workflow {
params.input
)

PIPELINE_INITIALISATION.out.samplesheet.view()

// //
// // WORKFLOW: Run main workflow
// //
// NFCORE_SCRNASEQ (
// PIPELINE_INITIALISATION.out.samplesheet.view()
// )

// //
// // SUBWORKFLOW: Run completion tasks
// //
// PIPELINE_COMPLETION (
// params.email,
// params.email_on_fail,
// params.plaintext_email,
// params.outdir,
// params.monochrome_logs,
// params.hook_url,
// NFCORE_SCRNASEQ.out.multiqc_report
// )
//
// WORKFLOW: Run main workflow
//
NFCORE_SCRNASEQ (
PIPELINE_INITIALISATION.out.samplesheet
)

//
// SUBWORKFLOW: Run completion tasks
//
PIPELINE_COMPLETION (
params.email,
params.email_on_fail,
params.plaintext_email,
params.outdir,
params.monochrome_logs,
params.hook_url,
NFCORE_SCRNASEQ.out.multiqc_report
)
}

/*
Expand Down
3 changes: 1 addition & 2 deletions workflows/scrnaseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ include { paramsSummaryLog; paramsSummaryMap } from 'plugin/nf-validation'
workflow SCRNASEQ {

take:
ch_input // channel: samplesheet read in from --input
ch_fastq

main:
ch_fastq = Channel.empty()

protocol_config = WorkflowScrnaseq.getProtocol(workflow, log, params.aligner, params.protocol)
if (protocol_config['protocol'] == 'auto' && params.aligner != "cellranger") {
Expand Down

0 comments on commit 9460011

Please sign in to comment.