You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
simple biopipeline tool that inputs a dna sequence and cleans it.
then using the --steps flag user can select any function in combination or all together from one of these:
clean
analyze
reversecomplement
translate
gives the output in a user desired foled as report.txt and translation.txt
how to set up:
no modules needed
runs on python 3
terminal command will look like this:
python pipeline.py --input input/sample.fasta --steps clean analyze reversecomplement translate --output output\
terminal command and ouput files gif:
About
A command-line bioinformatics pipeline for DNA sequence processing. Supports cleaning, analysis, reverse complementing, and translation via a composable --steps flag, so users can chain any combination of operations in one run. Outputs a structured report and translation file. Pure Python, no external dependencies.