CoolFace
Apppublic

Tsimech2000/Codon_Translator

sourceHugging Facemitupdated 2mo agoView on Hugging Face
0likes
README.md48 linesDownload Raw Back to root
1---2title: Codon Translator3emoji: 🧬4colorFrom: indigo5colorTo: green6sdk: streamlit7sdk_version: 1.47.18app_file: app.py9pinned: false10license: mit11---12 13# Codon Translator14 15A validated DNA/mRNA translation and teaching tool with codon-level reporting.16 17## Features18 19- Plain sequence and FASTA input20- DNA, RNA, and IUPAC ambiguity codes21- All six reading frames and reverse-complement translation22- Selected-frame or first start-to-stop ORF translation23- Standard and vertebrate mitochondrial genetic codes24- Codon report with DNA and mRNA notation25- Protein/nucleotide FASTA and CSV downloads26- GC content and estimated unmodified peptide mass27- Corrected 2D structures for all 20 standard amino acids28 29## Scientific scope30 31The tool is intended for education and sequence triage. It does not perform32gene prediction, splice-aware translation, codon-usage optimization, or33post-translational-modification analysis. Verify critical results using a34curated bioinformatics workflow.35 36## Local development37 38```bash39python -m pip install -r requirements.txt40streamlit run app.py41```42 43## Tests44 45```bash46python -m unittest discover -s tests -v47```48