{"id":34501404,"url":"https://github.com/berraylvc/bioseq-analyzer","last_synced_at":"2026-05-27T08:33:40.110Z","repository":{"id":329844705,"uuid":"1120785294","full_name":"berraylvc/bioseq-analyzer","owner":"berraylvc","description":"DNA FASTA sequence analyzer built with Biopython","archived":false,"fork":false,"pushed_at":"2025-12-23T08:34:30.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T11:20:37.334Z","etag":null,"topics":["bioinformatics","biopython","cli","fasta","python","sequence-analysis"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/berraylvc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-21T23:51:06.000Z","updated_at":"2025-12-23T08:34:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/berraylvc/bioseq-analyzer","commit_stats":null,"previous_names":["berraylvc/bioseq-analyzer"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/berraylvc/bioseq-analyzer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berraylvc%2Fbioseq-analyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berraylvc%2Fbioseq-analyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berraylvc%2Fbioseq-analyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berraylvc%2Fbioseq-analyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/berraylvc","download_url":"https://codeload.github.com/berraylvc/bioseq-analyzer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berraylvc%2Fbioseq-analyzer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33558648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bioinformatics","biopython","cli","fasta","python","sequence-analysis"],"created_at":"2025-12-24T02:01:37.887Z","updated_at":"2026-05-27T08:33:40.092Z","avatar_url":"https://github.com/berraylvc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿![CI](https://github.com/berraylvc/bioseq-analyzer/actions/workflows/ci.yml/badge.svg)\n\n# BioSeq Analyzer\n\nA small DNA FASTA sequence analyzer I built while learning basic bioinformatics workflows with **Biopython**.\nIt reads FASTA files and prints a short report (length, GC%, base counts, transcription/translation previews).\nIt can also export results to **JSON** and **CSV**.\n\n## What it does\n\n- Parse DNA FASTA files (Biopython `SeqIO`)\n- Base counts: A/C/G/T/N (+ common IUPAC ambiguity codes if present)\n- GC%, AT%, N%\n- mRNA preview (T → U)\n- Reverse complement preview\n- Protein translation previews (frames 1/2/3)\n- CLI tool: `bioseq`\n- Unit tests + GitHub Actions CI\n\n## Quickstart (Windows)\n\n    python -m venv .venv\n    .\\.venv\\Scripts\\activate\n    pip install -e .\n    pip install pytest\n\nRun on the example file:\n\n    bioseq --all --json report.json --csv report.csv\n\nRun tests:\n\n    pytest -q\n\n## Quickstart (Linux / macOS)\n\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip install -e .\n    pip install pytest\n\n## Usage\n\nAnalyze a FASTA file:\n\n    bioseq path\\to\\your.fasta --all\n\nSee all options:\n\n    bioseq --help\n\n## Output example\n\n    --- BioSeq Analyzer Report ---\n    Record ID        : Example_DNA_1\n    Length           : 39 bp\n    GC%              : 56.41\n    Counts           : {'A': 9, 'C': 8, 'G': 14, 'T': 8, 'N': 0}\n    Protein f1 (20)  : MAIVMGR*KGAR*\n    -----------------------------\n\n## Notes / Limitations\n\n- This is a learning project (not a full bioinformatics pipeline).\n- Large FASTA files may take time because records are currently loaded into memory.\n- If sequence length is not a multiple of 3, Biopython may warn about partial codons.\n\n## Project structure\n\n    src/bioseq_analyzer/   # package code\n    tests/                 # pytest tests\n    data/                  # sample fasta\n\n## Docs\n\n- API notes: `docs/API.md`\n- Troubleshooting: `docs/TROUBLESHOOTING.md`\n\n## License\n\nMIT — see `LICENSE`.\n\n## Author\n\nBerra Özyalvaç (GitHub: `@berraylvc`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberraylvc%2Fbioseq-analyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberraylvc%2Fbioseq-analyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberraylvc%2Fbioseq-analyzer/lists"}