Pipeline Overview¶
Note
The DAG below reflects actual process names from main.nf.
flowchart LR
I[Input multi-FASTA] --> S[SPLIT_FASTA]
S --> C[CODON_ANALYSIS]
S --> L[LONG_ORF]
S --> T[TRANSLATE_FASTA]
T --> H[HYDROPATHY_PROFILE]
H --> P[PLOT_HYDROPATHY]
C --> G[GATHER_RESULTS]
L --> G
T --> G
H --> G
P --> G
What each stage does¶
SPLIT_FASTA: splits multi-FASTA into single-record FASTA files.CODON_ANALYSIS: runsscripts/codon.plper record.LONG_ORF: runsscripts/longORF.plper record.TRANSLATE_FASTA: runsscripts/translate.plper record.HYDROPATHY_PROFILE: runsscripts/hydropathy.plper record.PLOT_HYDROPATHY: runsscripts/plot_hydro.pyper record.GATHER_RESULTS: merges all per-record outputs into final files.
Tip
Intermediate files are published under ${params.outdir}/intermediate/ for auditability.