Skip to content

Commit 54cb815

Browse files
author
Amanda Sullivan
committed
rename pipeline
1 parent 896893a commit 54cb815

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

main.nf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env nextflow
22
/*
33
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4-
mira/cli
4+
mira_nf/mira
55
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6-
Github : https://github.com/mira/cli
6+
Github : https://github.com/cdcent/mira-nf/tree/dev
77
----------------------------------------------------------------------------------------
88
*/
99

@@ -15,7 +15,7 @@ nextflow.enable.dsl = 2
1515
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1616
*/
1717

18-
include { CLI } from './workflows/cli'
18+
include { MIRA } from './workflows/mira'
1919
include { PIPELINE_INITIALISATION } from './subworkflows/local/utils_nfcore_cli_pipeline'
2020
include { PIPELINE_COMPLETION } from './subworkflows/local/utils_nfcore_cli_pipeline'
2121

@@ -26,10 +26,10 @@ include { PIPELINE_COMPLETION } from './subworkflows/local/utils_nfcore_cli_
2626
*/
2727

2828
//
29-
// WORKFLOW: Run main mira/cli analysis pipeline
29+
// WORKFLOW: Run main mira-nf/mira analysis pipeline
3030
//
31-
workflow MIRA_CLI {
32-
CLI()
31+
workflow MIRA_NF {
32+
MIRA()
3333
}
3434

3535
/*
@@ -58,7 +58,7 @@ workflow {
5858
//
5959
// WORKFLOW: Run main workflow
6060
//
61-
MIRA_CLI()
61+
MIRA_NF()
6262

6363
//
6464
// SUBWORKFLOW: Run completion tasks

subworkflows/local/utils_nfcore_cli_pipeline/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Subworkflow with functionality specific to the nf-core/cli pipeline
2+
// Subworkflow with functionality specific to the mira_nf pipeline
33
//
44

55
/*

workflows/cli.nf renamed to workflows/mira.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ workflow sc2_wgs_i {
273273

274274
// MAIN WORKFLOW
275275
// Decides which experiment type workflow to run based on experiemtn parameter given
276-
workflow CLI {
276+
workflow MIRA {
277277
if (params.e == 'Flu-Illumina') {
278278
flu_i()
279279
} else if (params.e == 'Flu-ONT') {

0 commit comments

Comments
 (0)