{"id":21882279,"url":"https://github.com/bfssi-bioinformatics-lab/enterotyper","last_synced_at":"2025-06-21T17:03:36.973Z","repository":{"id":37602559,"uuid":"150480031","full_name":"BFSSI-Bioinformatics-Lab/EnteroTyper","owner":"BFSSI-Bioinformatics-Lab","description":"Scripts to type and compare assemblies based off of Enterobase schemes","archived":false,"fork":false,"pushed_at":"2022-12-08T01:39:25.000Z","size":186,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-21T17:02:55.675Z","etag":null,"topics":[],"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/BFSSI-Bioinformatics-Lab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-26T19:32:33.000Z","updated_at":"2019-08-21T16:16:36.000Z","dependencies_parsed_at":"2023-01-24T21:00:50.045Z","dependency_job_id":null,"html_url":"https://github.com/BFSSI-Bioinformatics-Lab/EnteroTyper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BFSSI-Bioinformatics-Lab/EnteroTyper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFSSI-Bioinformatics-Lab%2FEnteroTyper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFSSI-Bioinformatics-Lab%2FEnteroTyper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFSSI-Bioinformatics-Lab%2FEnteroTyper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFSSI-Bioinformatics-Lab%2FEnteroTyper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BFSSI-Bioinformatics-Lab","download_url":"https://codeload.github.com/BFSSI-Bioinformatics-Lab/EnteroTyper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFSSI-Bioinformatics-Lab%2FEnteroTyper/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261162060,"owners_count":23118219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-28T09:28:08.743Z","updated_at":"2025-06-21T17:03:31.920Z","avatar_url":"https://github.com/BFSSI-Bioinformatics-Lab.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/BFSSI-Bioinformatics-Lab/EnteroTyper.svg?branch=master)](https://travis-ci.org/BFSSI-Bioinformatics-Lab/EnteroTyper)\n[![PyPI version](https://badge.fury.io/py/EnteroTyper.svg)](https://badge.fury.io/py/EnteroTyper)\n\n# EnteroTyper\n\nThis is a set of scripts to type assemblies according to schemes retrieved from Enterobase.\n\nEnterobase databases can be manually retrieved with [EnterobasePull](https://github.com/bfssi-forest-dussault/EnterobasePull). Database files retrieved from Enterobase can be automatically formatted via makeblastdb by the typer script.\n\n## Requirements\n- Python \u003e= 3.6\n- [ncbi-blast+](https://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE_TYPE=BlastDocs\u0026DOC_TYPE=Download) (makeblastdb and blastn must be in your $PATH)\n- [MUSCLE](https://www.drive5.com/muscle/) (muscle must be in your $PATH)\n\n### Installation\n```\npip install EnteroTyper\n```\n\n## Usage\n### Calling EnteroTyper\n```\nUsage: enterotyper [OPTIONS] COMMAND [ARGS]...\n\n  EnteroTyper is a suite of tools to type and evaluate assemblies with\n  Enterobase typing schemes.\n\nOptions:\n  --help  Show this message and exit.\n\nCommands:\n  bulk         Runs typer on many samples simultaneously\n  compare      Compares sequence types across samples processed by typer\n  concatenate  Concatenate sequences from report files generated by typer\n  typer        Types an assembly based on a given Enterobase scheme\n```\n\n\n### Single-sample Usage\n```\nUsage: enterotyper typer [OPTIONS]\n\n  Types an assembly based on an Enterobase scheme\n\nOptions:\n  -i, --input_assembly PATH  Path to input assembly in FASTA format\n                             [required]\n  -db, --database PATH       Path to your MLST database  [required]\n  -o, --outdir PATH         Root directory to store all output files\n                             [required]\n  --create_db                Set this flag to create the blastDB files using\n                             makeblastdb in the specified database\n                             directory.Will re-create the database files if\n                             they are already present.\n  -v, --verbose              Set this flag to enable more verbose logging.\n  --version                  Specify this flag to print the version and exit.\n  --help                     Show this message and exit.\n  ```\n\n### Multi-sample Usage\n```\nUsage: enterotyper bulk [OPTIONS]\n\n  Runs typer on many samples simultaneously\n\nOptions:\n  -i, --input_dir PATH  Path to directory containing FASTA assemblies\n                        [required]\n  -db, --database PATH  Path to your MLST database  [required]\n  -o, --outdir PATH    Root directory to store all output files  [required]\n  --create_db           Set this flag to create the blastDB files using\n                        makeblastdb in the specified database directory.Will\n                        re-create the database files if they are already\n                        present.\n  -v, --verbose         Set this flag to enable more verbose logging.\n  --version             Specify this flag to print the version and exit.\n  --help                Show this message and exit.\n```\n\n### Sequence Concatenation\n```\nUsage: enterotyper concatenate [OPTIONS] [TARGETS]...\n\n  Takes a list of target *.BLASTn_Detailed_Report.tsv files, followed by\n  several options. Extracts sequences from the BLASTn report files as FASTA\n  files, aligns them all with MUSCLE, and then concatenates all sequences\n  into a single FASTA.\n\nOptions:\n  -o, --outdir PATH     Root directory to store all output files  [required]\n  -db, --database PATH  Path to your MLST database  [required]\n  -v, --verbose         Set this flag to enable more verbose logging.\n  --help                Show this message and exit.\n```\n\n### Sequence Comparison\n```\nUsage: enterotyper compare [OPTIONS] [TARGETS]...\n\n  Takes a list of target *.cgMLST_Allele_Report.tsv files as input.\n  Number of mismatches will be indicated in output files -\n  a zero means no mismatches between types.\n\nOptions:\n  -o, --outdir PATH  Root directory to store all output files  [required]\n  -v, --verbose       Set this flag to enable more verbose logging.\n  --help              Show this message and exit.\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfssi-bioinformatics-lab%2Fenterotyper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbfssi-bioinformatics-lab%2Fenterotyper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfssi-bioinformatics-lab%2Fenterotyper/lists"}