Skip to content

Commit

Permalink
changes to the vadr subworkflow name, now no longer under entrypoint …
Browse files Browse the repository at this point in the history
…directory and more general purpose
  • Loading branch information
ankushkgupta2 committed Jan 9, 2024
1 parent 522631e commit 940899b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions subworkflows/entrypoints/vadr_entry.nf → subworkflows/vadr.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,29 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/

include { VADR } from "../../modules/vadr_annotation/main"
include { VADR_POST_CLEANUP } from "../../modules/post_vadr_annotation/main"
include { VADR } from "../modules/vadr_annotation/main"
include { VADR_POST_CLEANUP } from "../modules/post_vadr_annotation/main"


workflow RUN_VADR {
take:
utility_signal
utility_signal
fasta_files

main:
// run vadr processes
VADR (
utility_signal,
params.fasta_path,
fasta_files,
params.vadr_models_dir
)
VADR_POST_CLEANUP (
VADR.out.vadr_outputs,
params.meta_path,
params.fasta_path
fasta_files
)

emit:
VADR_POST_CLEANUP.out.gff
}

0 comments on commit 940899b

Please sign in to comment.