Skip to content

Commit

Permalink
Add format validation skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-panchal committed Jun 12, 2024
1 parent 5f66ae3 commit 090c55d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion main.nf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#! /usr/bin/env nextflow

nextflow.enable.dsl = 2
// nextflow.enable.dsl = 2

include { ABINITIO_TRAINING } from "$projectDir/subworkflows/abinitio_training/main"
include { ANNOTATION_PREPROCESSING } from "$projectDir/subworkflows/annotation_preprocessing/main"
include { FUNCTIONAL_ANNOTATION } from "$projectDir/subworkflows/functional_annotation/main"
include { TRANSCRIPT_ASSEMBLY } from "$projectDir/subworkflows/transcript_assembly/main"
include { FORMAT_VALIDATION } from "$projectDir/subworkflows/format_validation/main"

workflow {

Expand Down Expand Up @@ -41,6 +42,10 @@ workflow {
if ( params.subworkflow == 'transcript_assembly' ){
TRANSCRIPT_ASSEMBLY()
}

if ( params.subworkflow == 'format_validation' ) {
FORMAT_VALIDATION()
}
}

workflow.onComplete {
Expand Down
Empty file.

0 comments on commit 090c55d

Please sign in to comment.