Compare commits

...

21 Commits

Author SHA1 Message Date
953dee357f Deleted galaxy-server folder
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-25 17:40:42 +00:00
411a169079 Updated description
Some checks are pending
autoBIGS.galaxy/pipeline/head Build queued...
2025-02-25 16:50:27 +00:00
6a3e692d82 Updated .shed.yml owner to iuc 2025-02-25 16:46:24 +00:00
dcf28c8051 Added more help information and changed file input to use multiple instead of repeat.
Some checks are pending
autoBIGS.galaxy/pipeline/head Build queued...
2025-02-25 16:44:32 +00:00
ddb98514fb Changed to whitespaces
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-25 15:16:37 +00:00
3320b6fc43 Updated test to use minimized genome set
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-24 21:35:54 +00:00
26f95c66a2 Updated shed file and added README
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
shedfile now passes planemo linting
2025-02-24 20:16:15 +00:00
cd033e99e5 Changed devcontainer
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-24 17:52:21 +00:00
0e5c323070 Changed to miniforge environment
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-24 17:24:15 +00:00
bb1a7dfe38 Changed all commands to be run by the galaxy user
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-24 15:28:31 +00:00
40f49a48ac Updated test_results folder ownership
Some checks reported errors
autoBIGS.galaxy/pipeline/head Something is wrong with the build of this commit
2025-02-24 15:12:24 +00:00
dac4d5a620 Fixed output mixup
Some checks are pending
autoBIGS.galaxy/pipeline/head Build queued...
2025-02-24 15:10:02 +00:00
c02b726745 Attempting to add 3rd test for scheme retrieval
Some checks reported errors
autoBIGS.galaxy/pipeline/head Something is wrong with the build of this commit
2025-02-24 14:19:23 +00:00
d2dfbb9464 generate and run planemo testing on separate user
Some checks reported errors
autoBIGS.galaxy/pipeline/head Something is wrong with the build of this commit
2025-02-22 16:45:33 +00:00
72f7af1879 Renamed schemes output label 2025-02-22 16:45:15 +00:00
aaeb02853e Switched back to normal pip container
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-21 22:18:47 +00:00
5042d0d5fa Separated information CSV output 2025-02-21 22:18:13 +00:00
52bd3ac07d Added a second test
Some checks are pending
autoBIGS.galaxy/pipeline/head Build queued...
2025-02-21 22:14:07 +00:00
7c0d209470 Updated kubernetes agent configuration
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-21 19:04:32 +00:00
bca38d5838 Began Jenkinsfile pipeline writing
Some checks failed
autoBIGS.galaxy/pipeline/head There was a failure building this commit
2025-02-21 18:31:34 +00:00
8cb0e17ed3 Updated autobigs-cli wrapper to 0.5.0 2025-02-21 17:14:34 +00:00
18 changed files with 513 additions and 86 deletions

16
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM mcr.microsoft.com/devcontainers/miniconda:1-3
# Copy environment.yml (if found) to a temp location so we update the environment. Also
# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
COPY environment.yml* .devcontainer/noop.txt /tmp/conda-tmp/
RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/conda env update -n base -f /tmp/conda-tmp/environment.yml; fi \
&& rm -rf /tmp/conda-tmp
# [Optional] Uncomment to install a different version of Python than the default
# RUN conda install -y python=3.6 \
# && pip install --no-cache-dir pipx \
# && pipx reinstall-all
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

3
.devcontainer/noop.txt Normal file
View File

@@ -0,0 +1,3 @@
This file is copied into the container along with environment.yml* from the
parent folder. This is done to prevent the Dockerfile COPY instruction from
failing if no environment.yml is found.

3
.gitignore vendored
View File

@@ -1,2 +1,3 @@
galaxy-server/**
test_results
autobigs-cli_test_report.html
galaxy-server/**

0
.planemo.yml Normal file
View File

12
.shed.yml Normal file
View File

@@ -0,0 +1,12 @@
name: autobigs
owner: iuc
description: Automated MLST typing from PubMLST and InstitutPasteur.
homepage_url: https://github.com/Syph-and-VPD-Lab/autoBIGS.cli
long_description: |
A program that allows quickly batched requests for obtaining MLST
profiles on multiple FASTA sequences and exporting it as a convenient
CSV. Capable of querying a variety of MLST databases from both
Institut Pasteur and PubMLST.
remote_repository_url: https://github.com/Syph-and-VPD-Lab/autoBIGS.cli
categories:
- Sequence Analysis

View File

@@ -1,6 +1,5 @@
{
"recommendations": [
"davelopez.galaxy-tools",
"mechatroner.rainbow-csv",
"redhat.vscode-xml",
"ms-vscode.live-server"

12
.vscode/tasks.json vendored
View File

@@ -8,6 +8,18 @@
"type": "shell",
"command": "planemo lint",
"problemMatcher": []
},
{
"label": "serve",
"type": "shell",
"command": "planemo serve",
"problemMatcher": []
},
{
"label": "run tests",
"type": "shell",
"command": "planemo test autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html",
"problemMatcher": []
}
]
}

31
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,31 @@
pipeline {
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'pip'
inheritFrom 'pip'
}
}
stages {
stage ("install") {
steps {
sh 'pip install -r requirements.txt'
sh 'pip install standard-imghdr'
sh 'planemo ci_setup'
}
}
stage ("lint") {
steps {
sh "planemo lint autobigs-cli.xml"
}
}
stage ("test") {
steps {
sh 'mkdir test_results'
sh "planemo test autobigs-cli.xml --test_output_junit test_results/junit_results.xml --test_output_json test_results/results.json --test_output test_results/human.html"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results/junit_report.xml', stopProcessingIfError: true)]
}
}
}
}

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# autoBIGS.Galaxy
A program that allows quickly batched requests for obtaining MLST profiles on multiple FASTA sequences and exporting it as a convenient CSV. Capable of querying a variety of MLST databases from both Institut Pasteur and PubMLST. autoBIGS.galaxy is the galaxy frontend implementation of autoBIGS.cli and autoBIGS.engine.
This Galaxy tool implements [autoBIGS.engine](https://pypi.org/project/autoBIGS.engine) via wrapping the official [autoBIGS.cli](https://github.com/Syph-and-VPD-Lab/autoBIGS.cli) wrapper.
## Features
This CLI is capable of exactly what [autoBIGS.engine](https://pypi.org/project/autoBIGS.engine) is capable of:
- Import multiple whole genome FASTA files
- Fetch the available BIGSdb databases that is currently live and available
- Fetch the available BIGSdb database schemas for a given MLST database
- Retrieve exact/non-exact MLST allele variant IDs based off a sequence
- Retrieve MLST sequence type IDs based off a sequence
- Inexact matches are annotated with an asterisk (\*)
- Output all results to a single CSV

View File

@@ -1,105 +1,142 @@
<tool id="autobigs-cli" name="AutoBIGS.CLI" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
<description>Automated MLST typing from PubMLST and InstitutPasteur.</description>
<macros>
<token name="@TOOL_VERSION@">0.4.3</token>
<token name="@VERSION_SUFFIX@">0</token>
<import>autobigs-cli_macros.xml</import>
<expand macro="bio_tools"/>
</macros>
<tool id="autobigs-cli" name="autoBIGS.cli" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
<description>Automated MLST typing from PubMLST and InstitutPasteur MLST databases.</description>
<macros>
<token name="@TOOL_VERSION@">0.5.0</token>
<token name="@VERSION_SUFFIX@">0</token>
<import>autobigs-cli_macros.xml</import>
<expand macro="bio_tools"/>
</macros>
<requirements>
<requirement type="package" version="@TOOL_VERSION@">autobigs-cli</requirement>
</requirements>
<requirements>
<requirement type="package" version="@TOOL_VERSION@">autobigs-cli</requirement>
</requirements>
<command detect_errors="exit_code"><![CDATA[
#if $operation == "info":
#if $retrieved == "schema":
autoBIGS info $selected_schema
#else if $retrieved == "databases":
autoBIGS info --retrieve-bigsdbs
#end if
#else if $operation == "st":
autoBIGS st $fastas $seqdefdb $schema $mlst_profiles_output
#end if
]]></command>
<inputs>
<conditional name="mode">
<param name="operation" label="Operation" type="select">
<option value="info"/>
<option value="st"/>
</param>
<when value="info">
<conditional name="select-info">
<param name="retrieved" label="Schema or Database List" type="select">
<option value="schema"/>
<option value="databases"/>
</param>
<when value="schema">
<repeat name="schemas" title="Schemas">
<param name="selected_schema" argument="--retrieve-bigsdb-schemas" label="Retrieve schemas for" type="integer" min="0"/>
</repeat>
</when>
<when value="databases">
<!-- No need to do anything -->
<command detect_errors="exit_code"><![CDATA[
#if $mode.operation == "info":
#if $mode.select_info.retrieved == "schemes":
autoBIGS info --retrieve-bigsdb-schemas#for $scheme in $mode.select_info.schemes_list# '${scheme.selected_db}' #end for# --csv $info_schemes_out
#else if $mode.select_info.retrieved == "databases":
autoBIGS info --retrieve-bigsdbs --csv $info_db_out
#end if
#else if $mode.operation == "st":
autoBIGS st "$fasta" "$seqdefdb" $schema "$mlst_profiles_output" $stop_on_fail
#end if
]]></command>
<inputs>
<conditional name="mode">
<param name="operation" label="Operation" type="select" help="The operational mode of the tool.">
<option value="info">Retrieve Database Information</option>
<option value="st">Perform Sequence Typing</option>
</param>
<when value="info">
<conditional name="select_info">
<param name="retrieved" label="Retrieve" type="select" help="The type of information should the tool retrieve.">
<option value="schemes">Available Schemes for Database</option>
<option value="databases">Available Databases</option>
</param>
<when value="schemes">
<repeat name="schemes_list" title="Schemes" min="1">
<param name="selected_db" argument="--retrieve-bigsdb-schemas" label="Database Name" type="text" optional="false" help="The name of the database to retrieve schemes for."/>
</repeat>
</when>
</conditional>
</when>
<when value="st">
<param name="fastas" label="FASTA files" type="data" format="fasta,fas,fa,fna,ffn,faa,mpfa,frn"/>
<param name="seqdefdb" label="BIGSdb SeqDef Name" type="text"/>
<param name="schema" label="BIGSdb SeqDef Schema ID" type="integer" min="0"/>
</when>
</conditional>
</inputs>
<outputs>
<data name="mlst_profiles_output" label="${tool.name} on ${on_string}" format="csv">
<filter>mode == "st"</filter>
</data>
</outputs>
<when value="databases">
</when>
</conditional>
</when>
<when value="st">
<param name="fasta" label="FASTA file" type="data" format="fasta,fas,fa,fna,ffn,faa,mpfa,frn" multiple="true" help="The FASTA(s) file to perform sequence typing on."/>
<param name="seqdefdb" label="BIGSdb SeqDef Name" type="text" optional="false" help="The database to use for typing."/>
<param name="schema" label="BIGSdb SeqDef Schema ID" type="integer" min="0" help="The (integer) ID of the scheme to be used."/>
<param name="stop_on_fail" label="Stop on failure to match" truevalue="--sof" falsevalue="" value="false" type="boolean" help="Stops running on failure to obtain sequence type."/>
</when>
</conditional>
</inputs>
<outputs>
<data name="mlst_profiles_output" label="${tool.name} on ${on_string}" format="csv">
<filter>mode['operation'] == 'st'</filter>
</data>
<data name="info_db_out" label="${tool.name} supported Databases" format="csv">
<filter>mode['operation'] == 'info' and mode['select_info']['retrieved'] == 'databases'</filter>
</data>
<data name="info_schemes_out" label="${tool.name} supported Schemes" format="csv">
<filter>mode['operation'] == 'info' and mode['select_info']['retrieved'] == 'schemes'</filter>
</data>
</outputs>
<tests>
<test>
<test expect_num_outputs="1">
<param name="operation" value="st" />
<param name="fastas" value="tohama_I_bpertussis.fasta" />
<param name="fasta" value="tohama_I_minimized_features.fasta" />
<param name="seqdefdb" value="pubmlst_bordetella_seqdef" />
<param name="schema" value="3" />
<output name="mlst_profiles_output" file="results.csv" ftype="csv" />
<output name="mlst_profiles_output" file="tohama_I_minimized_features_typed.csv" ftype="csv" />
</test>
<test expect_num_outputs="1">
<param name="operation" value="info" />
<param name="retrieved" value="databases" />
<output name="info_db_out">
<assert_contents>
<has_text text="BIGSdb Names,Source"/>
<has_text text="pubmlst_bordetella_seqdef,https://bigsdb.pasteur.fr/api"/>
</assert_contents>
</output>
</test>
<test expect_num_outputs="1">
<param name="operation" value="info" />
<repeat name="schemes_list">
<param name="selected_db" value="pubmlst_bordetella_seqdef" />
</repeat>
<output name="info_schemes_out">
<assert_contents>
<has_text text="Name,ID"/>
<has_text text="MLST,3"/>
</assert_contents>
</output>
</test>
</tests>
<help><![CDATA[
<help><![CDATA[
What is autoBIGS
================
autoBIGS is a tool to help automatically performes multi-locus sequence typing (MLST) on given data by performing calls to necessary web BIGS database web APIs.
usage: autoBIGS info [-h] [--retrieve-bigsdbs] [--retrieve-bigsdb-schemas LIST_BIGSDB_SCHEMAS [LIST_BIGSDB_SCHEMAS ...]]
Tool Modes
==========
autoBIGS has two modes. Since the tool works with the sequence definition and MLST databases live, it is also able to tell the user the currently available databases, and their associated schemas. See the following sections for more information.
Fetches the latest BIGSdb MLST database definitions.
Obtaining Database Name and Schema ID
=====================================
You will need a database name and scheme ID for sequence typing. Follow these steps to check what databases, schemes, and their associated IDs are available.
options:
-h, --help show this help message and exit
--retrieve-bigsdbs Lists all known BIGSdb MLST databases (fetched from known APIs and cached).
--retrieve-bigsdb-schemas SCHEMA_IDS
Lists the known schema IDs for a given BIGSdb sequence definition database name. The name, and then the ID of the schema is given.
1. Select "Retrieve Database Information" for "Operation"
2. Then for "Retrieve" select "Databases" and run. This will produce a table job output with all possible database names and their database API URL.
3. Note down the names of the databases you are interested in.
4. Select "Retrieve Database Information" for "Operation"
5. Then, for "Retrieve", select "Available schemes for Database".
6. Enter the noted interested database and run. This will return a CSV with the scheme IDs. Note down interested IDs.
usage: autoBIGS st [-h] [--exact] [--stop-on-fail] fastas [fastas ...] seqdefdb schema out
Performing Sequence Typing
==========================
Simply select "Perform Sequence Typing" for the "Operation" and select your FASTA files. Then, enter your SeqDef Database name (see "Obtaining Database Name and Schema ID" above) and schema ID.
Returns MLST exact profile matches.
Special behaviour for FASTAs with multiple sequences
====================================================
AutoBIGS will treat multiple sequences in the same FASTA file as part of the same sample. This will result in a fasta with multiple sequences within the same row with the final sequence type being retrieved from the resulting alleles of the individual sequences within the FASTA. This is helpful if the input FASTA was obtained from a targetted form of sequencing for the specific needed regions (e.g., Sanger sequencing of 7 house keeping genes), rather than a whole genome sequence. If your data is a whole genome sequence (WGS) of the entire genome or similar, each WGS should have it's own FASTA.
positional arguments:
fastas The FASTA files to process. Multiple can be listed.
seqdefdb The BIGSdb seqdef database to use for typing.
schema The BIGSdb seqdef database schema ID (integer) to use for typing.
out The output CSV name (.csv will be appended).
options:
-h, --help show this help message and exit
--exact, -ex Should run exact matching rather than returning all similar ones
--stop-on-fail, -sof Should the algorithm stop in the case there are no matches (or partial matches when
expecting exact matches).
More Information
================
For more information on the tool being wrapped itself, please see the `autoBIGS.cli Github repository`_. Issues, bugs, and feature requests for the tool itself should be submitted to the `autoBIGS.cli issues`_. If the issue/bug/feature request is solely pertanent to the Galaxy wrapper, please check out the `autoBIGS.galaxy issues`_ tracker on GitHub.
]]></help>
.. _autoBIGS.cli GitHub repository: https://github.com/Syph-and-VPD-Lab/autoBIGS.cli
.. _autoBIGS.cli issues: https://github.com/Syph-and-VPD-Lab/autoBIGS.cli/issues
.. _autoBIGS.galaxy: https://github.com/Syph-and-VPD-Lab/autoBIGS.galaxy
.. _autoBIGS.galaxy issues: https://github.com/Syph-and-VPD-Lab/autoBIGS.galaxy/issues
]]></help>
<citations>
<citation type="bibtex">
@book{Deng2025RealYHD,
title = {RealYHD/autoBIGS.cli},
url = {https://github.com/RealYHD/autoBIGS.cli},
title = {Syph-and-VPD-Lab/autoBIGS.cli},
url = {https://github.com/Syph-and-VPD-Lab/autoBIGS.cli},
author = {Deng, Harrison},
date = {2025-01-24},
year = {2025},

7
environment.yml Normal file
View File

@@ -0,0 +1,7 @@
name: base
channels:
- bioconda
- conda-forge
dependencies:
- python==3.12
- planemo

View File

@@ -0,0 +1,146 @@
BIGSdb Names,Source
pubmlst_aactinomycetemcomitans_seqdef,https://rest.pubmlst.org
pubmlst_abaumannii_seqdef,https://rest.pubmlst.org
pubmlst_achromobacter_seqdef,https://rest.pubmlst.org
pubmlst_aeromonas_seqdef,https://rest.pubmlst.org
pubmlst_afumigatus_seqdef,https://rest.pubmlst.org
pubmlst_aparagallinarum_seqdef,https://rest.pubmlst.org
pubmlst_aphagocytophilum_seqdef,https://rest.pubmlst.org
pubmlst_arcobacter_seqdef,https://rest.pubmlst.org
pubmlst_bbacilliformis_seqdef,https://rest.pubmlst.org
pubmlst_bcc_seqdef,https://rest.pubmlst.org
pubmlst_bcereus_seqdef,https://rest.pubmlst.org
pubmlst_bfragilis_seqdef,https://rest.pubmlst.org
pubmlst_bhenselae_seqdef,https://rest.pubmlst.org
pubmlst_blastocystis_seqdef,https://rest.pubmlst.org
pubmlst_blicheniformis_seqdef,https://rest.pubmlst.org
pubmlst_bmallei_seqdef,https://rest.pubmlst.org
pubmlst_bordetella_seqdef,https://bigsdb.pasteur.fr/api
pubmlst_borrelia_seqdef,https://rest.pubmlst.org
pubmlst_bpseudomallei_seqdef,https://rest.pubmlst.org
pubmlst_brachyspira_seqdef,https://rest.pubmlst.org
pubmlst_brucella_seqdef,https://rest.pubmlst.org
pubmlst_bsubtilis_seqdef,https://rest.pubmlst.org
pubmlst_bwashoensis_seqdef,https://rest.pubmlst.org
pubmlst_calbicans_seqdef,https://rest.pubmlst.org
pubmlst_campylobacter_nonjejuni_seqdef,https://rest.pubmlst.org
pubmlst_campylobacter_seqdef,https://rest.pubmlst.org
pubmlst_cbotulinum_seqdef,https://rest.pubmlst.org
pubmlst_cchauvoei_seqdef,https://rest.pubmlst.org
pubmlst_cdifficile_seqdef,https://rest.pubmlst.org
pubmlst_cfreundii_seqdef,https://rest.pubmlst.org
pubmlst_cglabrata_seqdef,https://rest.pubmlst.org
pubmlst_chlamydiales_seqdef,https://rest.pubmlst.org
pubmlst_ckrusei_seqdef,https://rest.pubmlst.org
pubmlst_cmaltaromaticum_seqdef,https://rest.pubmlst.org
pubmlst_cperfringens_seqdef,https://rest.pubmlst.org
pubmlst_cronobacter_seqdef,https://rest.pubmlst.org
pubmlst_csepticum_seqdef,https://rest.pubmlst.org
pubmlst_csinensis_seqdef,https://rest.pubmlst.org
pubmlst_ctropicalis_seqdef,https://rest.pubmlst.org
pubmlst_diphtheria_seqdef,https://bigsdb.pasteur.fr/api
pubmlst_dnodosus_seqdef,https://rest.pubmlst.org
pubmlst_ecloacae_seqdef,https://rest.pubmlst.org
pubmlst_edwardsiella_seqdef,https://rest.pubmlst.org
pubmlst_efaecalis_seqdef,https://rest.pubmlst.org
pubmlst_efaecium_seqdef,https://rest.pubmlst.org
pubmlst_escherichia_seqdef,https://rest.pubmlst.org
pubmlst_fpsychrophilum_seqdef,https://rest.pubmlst.org
pubmlst_gallibacterium_seqdef,https://rest.pubmlst.org
pubmlst_geotrichum_seqdef,https://rest.pubmlst.org
pubmlst_hcinaedi_seqdef,https://rest.pubmlst.org
pubmlst_helicobacter_seqdef,https://rest.pubmlst.org
pubmlst_hinfluenzae_seqdef,https://rest.pubmlst.org
pubmlst_hparasuis_seqdef,https://rest.pubmlst.org
pubmlst_hsuis_seqdef,https://rest.pubmlst.org
pubmlst_kaerogenes_seqdef,https://rest.pubmlst.org
pubmlst_klebsiella_seqdef,https://bigsdb.pasteur.fr/api
pubmlst_koxytoca_seqdef,https://rest.pubmlst.org
pubmlst_kseptempunctata_seqdef,https://rest.pubmlst.org
pubmlst_leptospira_seqdef,https://rest.pubmlst.org
pubmlst_lgarvieae_seqdef,https://rest.pubmlst.org
pubmlst_liberibacter_seqdef,https://rest.pubmlst.org
pubmlst_listeria_seqdef,https://bigsdb.pasteur.fr/api
pubmlst_llactis_phage_seqdef,https://rest.pubmlst.org
pubmlst_lsalivarius_seqdef,https://rest.pubmlst.org
pubmlst_mabscessus_seqdef,https://rest.pubmlst.org
pubmlst_magalactiae_seqdef,https://rest.pubmlst.org
pubmlst_manserisalpingitidis_seqdef,https://rest.pubmlst.org
pubmlst_mbovis_seqdef,https://rest.pubmlst.org
pubmlst_mcanis_seqdef,https://rest.pubmlst.org
pubmlst_mcaseolyticus_seqdef,https://rest.pubmlst.org
pubmlst_mflocculare_seqdef,https://rest.pubmlst.org
pubmlst_mgallisepticum_seqdef,https://rest.pubmlst.org
pubmlst_mgenitalium_seqdef,https://rest.pubmlst.org
pubmlst_mhaemolytica_seqdef,https://rest.pubmlst.org
pubmlst_mhominis_seqdef,https://rest.pubmlst.org
pubmlst_mhyopneumoniae_seqdef,https://rest.pubmlst.org
pubmlst_mhyorhinis_seqdef,https://rest.pubmlst.org
pubmlst_mhyosynoviae_seqdef,https://rest.pubmlst.org
pubmlst_miowae_seqdef,https://rest.pubmlst.org
pubmlst_mplutonius_seqdef,https://rest.pubmlst.org
pubmlst_mpneumoniae_seqdef,https://rest.pubmlst.org
pubmlst_msciuri_seqdef,https://rest.pubmlst.org
pubmlst_msynoviae_seqdef,https://rest.pubmlst.org
pubmlst_mycobacteria_seqdef,https://rest.pubmlst.org
pubmlst_neisseria_seqdef,https://rest.pubmlst.org
pubmlst_oralstrep_seqdef,https://rest.pubmlst.org
pubmlst_orhinotracheale_seqdef,https://rest.pubmlst.org
pubmlst_otsutsugamushi_seqdef,https://rest.pubmlst.org
pubmlst_pacnes_seqdef,https://rest.pubmlst.org
pubmlst_paeruginosa_seqdef,https://rest.pubmlst.org
pubmlst_pdamselae_seqdef,https://rest.pubmlst.org
pubmlst_pfluorescens_seqdef,https://rest.pubmlst.org
pubmlst_pgingivalis_seqdef,https://rest.pubmlst.org
pubmlst_plarvae_seqdef,https://rest.pubmlst.org
pubmlst_plasmid_seqdef,https://rest.pubmlst.org
pubmlst_pmultocida_seqdef,https://rest.pubmlst.org
pubmlst_ppentosaceus_seqdef,https://rest.pubmlst.org
pubmlst_pputida_seqdef,https://rest.pubmlst.org
pubmlst_proteus_seqdef,https://rest.pubmlst.org
pubmlst_psalmonis_seqdef,https://rest.pubmlst.org
pubmlst_ranatipestifer_seqdef,https://rest.pubmlst.org
pubmlst_rhodococcus_seqdef,https://rest.pubmlst.org
pubmlst_rmlst_seqdef,https://rest.pubmlst.org
pubmlst_sagalactiae_seqdef,https://rest.pubmlst.org
pubmlst_salmonella_seqdef,https://rest.pubmlst.org
pubmlst_saureus_seqdef,https://rest.pubmlst.org
pubmlst_sbsec_seqdef,https://rest.pubmlst.org
pubmlst_scanis_seqdef,https://rest.pubmlst.org
pubmlst_schromogenes_seqdef,https://rest.pubmlst.org
pubmlst_sdysgalactiae_seqdef,https://rest.pubmlst.org
pubmlst_sepidermidis_seqdef,https://rest.pubmlst.org
pubmlst_serratia_seqdef,https://rest.pubmlst.org
pubmlst_sgallolyticus_seqdef,https://rest.pubmlst.org
pubmlst_shaemolyticus_seqdef,https://rest.pubmlst.org
pubmlst_shewanella_seqdef,https://rest.pubmlst.org
pubmlst_shominis_seqdef,https://rest.pubmlst.org
pubmlst_siniae_seqdef,https://rest.pubmlst.org
pubmlst_sinorhizobium_seqdef,https://rest.pubmlst.org
pubmlst_smaltophilia_seqdef,https://rest.pubmlst.org
pubmlst_smitis_seqdef,https://rest.pubmlst.org
pubmlst_sparasitica_seqdef,https://rest.pubmlst.org
pubmlst_spneumoniae_seqdef,https://rest.pubmlst.org
pubmlst_spseudintermedius_seqdef,https://rest.pubmlst.org
pubmlst_spyogenes_seqdef,https://rest.pubmlst.org
pubmlst_ssuis_seqdef,https://rest.pubmlst.org
pubmlst_sthermophilus_seqdef,https://rest.pubmlst.org
pubmlst_streptomyces_seqdef,https://rest.pubmlst.org
pubmlst_suberis_seqdef,https://rest.pubmlst.org
pubmlst_szooepidemicus_seqdef,https://rest.pubmlst.org
pubmlst_taylorella_seqdef,https://rest.pubmlst.org
pubmlst_tenacibaculum_seqdef,https://rest.pubmlst.org
pubmlst_test_seqdef,https://rest.pubmlst.org
pubmlst_tpallidum_seqdef,https://rest.pubmlst.org
pubmlst_tvaginalis_seqdef,https://rest.pubmlst.org
pubmlst_ureaplasma_seqdef,https://rest.pubmlst.org
pubmlst_vcholerae_seqdef,https://rest.pubmlst.org
pubmlst_vibrio_seqdef,https://rest.pubmlst.org
pubmlst_vparahaemolyticus_seqdef,https://rest.pubmlst.org
pubmlst_vtapetis_seqdef,https://rest.pubmlst.org
pubmlst_vvulnificus_seqdef,https://rest.pubmlst.org
pubmlst_wolbachia_seqdef,https://rest.pubmlst.org
pubmlst_xcitri_seqdef,https://rest.pubmlst.org
pubmlst_xfastidiosa_seqdef,https://rest.pubmlst.org
pubmlst_yersinia_seqdef,https://bigsdb.pasteur.fr/api
pubmlst_yruckeri_seqdef,https://rest.pubmlst.org
1 BIGSdb Names Source
2 pubmlst_aactinomycetemcomitans_seqdef https://rest.pubmlst.org
3 pubmlst_abaumannii_seqdef https://rest.pubmlst.org
4 pubmlst_achromobacter_seqdef https://rest.pubmlst.org
5 pubmlst_aeromonas_seqdef https://rest.pubmlst.org
6 pubmlst_afumigatus_seqdef https://rest.pubmlst.org
7 pubmlst_aparagallinarum_seqdef https://rest.pubmlst.org
8 pubmlst_aphagocytophilum_seqdef https://rest.pubmlst.org
9 pubmlst_arcobacter_seqdef https://rest.pubmlst.org
10 pubmlst_bbacilliformis_seqdef https://rest.pubmlst.org
11 pubmlst_bcc_seqdef https://rest.pubmlst.org
12 pubmlst_bcereus_seqdef https://rest.pubmlst.org
13 pubmlst_bfragilis_seqdef https://rest.pubmlst.org
14 pubmlst_bhenselae_seqdef https://rest.pubmlst.org
15 pubmlst_blastocystis_seqdef https://rest.pubmlst.org
16 pubmlst_blicheniformis_seqdef https://rest.pubmlst.org
17 pubmlst_bmallei_seqdef https://rest.pubmlst.org
18 pubmlst_bordetella_seqdef https://bigsdb.pasteur.fr/api
19 pubmlst_borrelia_seqdef https://rest.pubmlst.org
20 pubmlst_bpseudomallei_seqdef https://rest.pubmlst.org
21 pubmlst_brachyspira_seqdef https://rest.pubmlst.org
22 pubmlst_brucella_seqdef https://rest.pubmlst.org
23 pubmlst_bsubtilis_seqdef https://rest.pubmlst.org
24 pubmlst_bwashoensis_seqdef https://rest.pubmlst.org
25 pubmlst_calbicans_seqdef https://rest.pubmlst.org
26 pubmlst_campylobacter_nonjejuni_seqdef https://rest.pubmlst.org
27 pubmlst_campylobacter_seqdef https://rest.pubmlst.org
28 pubmlst_cbotulinum_seqdef https://rest.pubmlst.org
29 pubmlst_cchauvoei_seqdef https://rest.pubmlst.org
30 pubmlst_cdifficile_seqdef https://rest.pubmlst.org
31 pubmlst_cfreundii_seqdef https://rest.pubmlst.org
32 pubmlst_cglabrata_seqdef https://rest.pubmlst.org
33 pubmlst_chlamydiales_seqdef https://rest.pubmlst.org
34 pubmlst_ckrusei_seqdef https://rest.pubmlst.org
35 pubmlst_cmaltaromaticum_seqdef https://rest.pubmlst.org
36 pubmlst_cperfringens_seqdef https://rest.pubmlst.org
37 pubmlst_cronobacter_seqdef https://rest.pubmlst.org
38 pubmlst_csepticum_seqdef https://rest.pubmlst.org
39 pubmlst_csinensis_seqdef https://rest.pubmlst.org
40 pubmlst_ctropicalis_seqdef https://rest.pubmlst.org
41 pubmlst_diphtheria_seqdef https://bigsdb.pasteur.fr/api
42 pubmlst_dnodosus_seqdef https://rest.pubmlst.org
43 pubmlst_ecloacae_seqdef https://rest.pubmlst.org
44 pubmlst_edwardsiella_seqdef https://rest.pubmlst.org
45 pubmlst_efaecalis_seqdef https://rest.pubmlst.org
46 pubmlst_efaecium_seqdef https://rest.pubmlst.org
47 pubmlst_escherichia_seqdef https://rest.pubmlst.org
48 pubmlst_fpsychrophilum_seqdef https://rest.pubmlst.org
49 pubmlst_gallibacterium_seqdef https://rest.pubmlst.org
50 pubmlst_geotrichum_seqdef https://rest.pubmlst.org
51 pubmlst_hcinaedi_seqdef https://rest.pubmlst.org
52 pubmlst_helicobacter_seqdef https://rest.pubmlst.org
53 pubmlst_hinfluenzae_seqdef https://rest.pubmlst.org
54 pubmlst_hparasuis_seqdef https://rest.pubmlst.org
55 pubmlst_hsuis_seqdef https://rest.pubmlst.org
56 pubmlst_kaerogenes_seqdef https://rest.pubmlst.org
57 pubmlst_klebsiella_seqdef https://bigsdb.pasteur.fr/api
58 pubmlst_koxytoca_seqdef https://rest.pubmlst.org
59 pubmlst_kseptempunctata_seqdef https://rest.pubmlst.org
60 pubmlst_leptospira_seqdef https://rest.pubmlst.org
61 pubmlst_lgarvieae_seqdef https://rest.pubmlst.org
62 pubmlst_liberibacter_seqdef https://rest.pubmlst.org
63 pubmlst_listeria_seqdef https://bigsdb.pasteur.fr/api
64 pubmlst_llactis_phage_seqdef https://rest.pubmlst.org
65 pubmlst_lsalivarius_seqdef https://rest.pubmlst.org
66 pubmlst_mabscessus_seqdef https://rest.pubmlst.org
67 pubmlst_magalactiae_seqdef https://rest.pubmlst.org
68 pubmlst_manserisalpingitidis_seqdef https://rest.pubmlst.org
69 pubmlst_mbovis_seqdef https://rest.pubmlst.org
70 pubmlst_mcanis_seqdef https://rest.pubmlst.org
71 pubmlst_mcaseolyticus_seqdef https://rest.pubmlst.org
72 pubmlst_mflocculare_seqdef https://rest.pubmlst.org
73 pubmlst_mgallisepticum_seqdef https://rest.pubmlst.org
74 pubmlst_mgenitalium_seqdef https://rest.pubmlst.org
75 pubmlst_mhaemolytica_seqdef https://rest.pubmlst.org
76 pubmlst_mhominis_seqdef https://rest.pubmlst.org
77 pubmlst_mhyopneumoniae_seqdef https://rest.pubmlst.org
78 pubmlst_mhyorhinis_seqdef https://rest.pubmlst.org
79 pubmlst_mhyosynoviae_seqdef https://rest.pubmlst.org
80 pubmlst_miowae_seqdef https://rest.pubmlst.org
81 pubmlst_mplutonius_seqdef https://rest.pubmlst.org
82 pubmlst_mpneumoniae_seqdef https://rest.pubmlst.org
83 pubmlst_msciuri_seqdef https://rest.pubmlst.org
84 pubmlst_msynoviae_seqdef https://rest.pubmlst.org
85 pubmlst_mycobacteria_seqdef https://rest.pubmlst.org
86 pubmlst_neisseria_seqdef https://rest.pubmlst.org
87 pubmlst_oralstrep_seqdef https://rest.pubmlst.org
88 pubmlst_orhinotracheale_seqdef https://rest.pubmlst.org
89 pubmlst_otsutsugamushi_seqdef https://rest.pubmlst.org
90 pubmlst_pacnes_seqdef https://rest.pubmlst.org
91 pubmlst_paeruginosa_seqdef https://rest.pubmlst.org
92 pubmlst_pdamselae_seqdef https://rest.pubmlst.org
93 pubmlst_pfluorescens_seqdef https://rest.pubmlst.org
94 pubmlst_pgingivalis_seqdef https://rest.pubmlst.org
95 pubmlst_plarvae_seqdef https://rest.pubmlst.org
96 pubmlst_plasmid_seqdef https://rest.pubmlst.org
97 pubmlst_pmultocida_seqdef https://rest.pubmlst.org
98 pubmlst_ppentosaceus_seqdef https://rest.pubmlst.org
99 pubmlst_pputida_seqdef https://rest.pubmlst.org
100 pubmlst_proteus_seqdef https://rest.pubmlst.org
101 pubmlst_psalmonis_seqdef https://rest.pubmlst.org
102 pubmlst_ranatipestifer_seqdef https://rest.pubmlst.org
103 pubmlst_rhodococcus_seqdef https://rest.pubmlst.org
104 pubmlst_rmlst_seqdef https://rest.pubmlst.org
105 pubmlst_sagalactiae_seqdef https://rest.pubmlst.org
106 pubmlst_salmonella_seqdef https://rest.pubmlst.org
107 pubmlst_saureus_seqdef https://rest.pubmlst.org
108 pubmlst_sbsec_seqdef https://rest.pubmlst.org
109 pubmlst_scanis_seqdef https://rest.pubmlst.org
110 pubmlst_schromogenes_seqdef https://rest.pubmlst.org
111 pubmlst_sdysgalactiae_seqdef https://rest.pubmlst.org
112 pubmlst_sepidermidis_seqdef https://rest.pubmlst.org
113 pubmlst_serratia_seqdef https://rest.pubmlst.org
114 pubmlst_sgallolyticus_seqdef https://rest.pubmlst.org
115 pubmlst_shaemolyticus_seqdef https://rest.pubmlst.org
116 pubmlst_shewanella_seqdef https://rest.pubmlst.org
117 pubmlst_shominis_seqdef https://rest.pubmlst.org
118 pubmlst_siniae_seqdef https://rest.pubmlst.org
119 pubmlst_sinorhizobium_seqdef https://rest.pubmlst.org
120 pubmlst_smaltophilia_seqdef https://rest.pubmlst.org
121 pubmlst_smitis_seqdef https://rest.pubmlst.org
122 pubmlst_sparasitica_seqdef https://rest.pubmlst.org
123 pubmlst_spneumoniae_seqdef https://rest.pubmlst.org
124 pubmlst_spseudintermedius_seqdef https://rest.pubmlst.org
125 pubmlst_spyogenes_seqdef https://rest.pubmlst.org
126 pubmlst_ssuis_seqdef https://rest.pubmlst.org
127 pubmlst_sthermophilus_seqdef https://rest.pubmlst.org
128 pubmlst_streptomyces_seqdef https://rest.pubmlst.org
129 pubmlst_suberis_seqdef https://rest.pubmlst.org
130 pubmlst_szooepidemicus_seqdef https://rest.pubmlst.org
131 pubmlst_taylorella_seqdef https://rest.pubmlst.org
132 pubmlst_tenacibaculum_seqdef https://rest.pubmlst.org
133 pubmlst_test_seqdef https://rest.pubmlst.org
134 pubmlst_tpallidum_seqdef https://rest.pubmlst.org
135 pubmlst_tvaginalis_seqdef https://rest.pubmlst.org
136 pubmlst_ureaplasma_seqdef https://rest.pubmlst.org
137 pubmlst_vcholerae_seqdef https://rest.pubmlst.org
138 pubmlst_vibrio_seqdef https://rest.pubmlst.org
139 pubmlst_vparahaemolyticus_seqdef https://rest.pubmlst.org
140 pubmlst_vtapetis_seqdef https://rest.pubmlst.org
141 pubmlst_vvulnificus_seqdef https://rest.pubmlst.org
142 pubmlst_wolbachia_seqdef https://rest.pubmlst.org
143 pubmlst_xcitri_seqdef https://rest.pubmlst.org
144 pubmlst_xfastidiosa_seqdef https://rest.pubmlst.org
145 pubmlst_yersinia_seqdef https://bigsdb.pasteur.fr/api
146 pubmlst_yruckeri_seqdef https://rest.pubmlst.org

View File

@@ -1,2 +0,0 @@
id,st,clonal-complex,tyrB,icd,pepA,adk,pgm,fumC,glyA
BX470248.1,1,ST-2 complex,1,1,1,1,1,1,1
1 id st clonal-complex tyrB icd pepA adk pgm fumC glyA
2 BX470248.1 1 ST-2 complex 1 1 1 1 1 1 1

View File

@@ -0,0 +1,11 @@
Name,ID
Autotransporters,11
Bp_vaccine antigens,7
MLST,3
Other toxins,9
PRN-test-Bp,5
Phase,8
T3SS,10
cgMLST_genus,1
cgMLST_pertussis,4
macrolide resistance,6
1 Name ID
2 Autotransporters 11
3 Bp_vaccine antigens 7
4 MLST 3
5 Other toxins 9
6 PRN-test-Bp 5
7 Phase 8
8 T3SS 10
9 cgMLST_genus 1
10 cgMLST_pertussis 4
11 macrolide resistance 6

View File

@@ -0,0 +1,2 @@
id,st,clonal-complex,adk,fumC,glyA,icd,pepA,pgm,tyrB
BX470248.1,1,ST-2 complex,1,1,1,1,1,1,1
1 id st clonal-complex adk fumC glyA icd pepA pgm tyrB
2 BX470248.1 1 ST-2 complex 1 1 1 1 1 1 1

View File

@@ -0,0 +1,133 @@
>lcl|BX640419.1_cds_CAE43044.1_2724 [gene=adK] [locus_tag=BP2769] [db_xref=GOA:P0DKX8,InterPro:IPR000850,InterPro:IPR006259,InterPro:IPR007862,InterPro:IPR027417] [protein=adenylate kinase] [protein_id=CAE43044.1] [location=164032..164688] [gbkey=CDS]
ATGCGTCTCATTCTGCTCGGACCGCCCGGAGCCGGCAAAGGCACCCAAGCCGCCTTTCTCACCCAACACT
ACGGCATCCCGCAGATATCCACCGGTGACATGCTGCGCGCCGCCGTCAAGGCCGGCACGCCGCTGGGCCT
GGAAGCCAAGAAGGTCATGGACGCGGGCGGCCTGGTCTCGGACGACCTGATCATCGGCCTGGTGCGCGAT
CGCCTGACCCAGCCCGATTGCGCCAACGGCTACCTGTTCGACGGTTTCCCGCGCACCATCCCGCAGGCCG
ACGCGCTCAAGAGCGCCGGCATCGCGCTGGATTACGTGGTCGAGATCGAAGTGCCGGAAAGCGACATCAT
CGAACGCATGAGCGAACGCCGCGTGCACCCGGCCAGCGGCCGCAGCTACCACGTACGCTTCAATCCGCCC
AAGGCCGAAGGCGTGGACGACGTCACGGGCGAACCGCTGGTGCAGCGCGACGACGACCGCGAGGAAACCG
TGCGCCATCGTCTCAACGTCTACCAGAACCAGACCCGCCCGCTGGTCGACTACTACTCGTCCTGGGCCCA
GTCCGATGCCGCCGCGGCGCCCAAGTACCGCAAGATCTCCGGCGTCGGCTCGGTCGACGAAATCAAGAGC
CGCCTGTCGCAGGCTCTGCAGAGCTAA
>lcl|BX640411.1_cds_CAE40628.1_248 [gene=fumC] [locus_tag=BP0248] [db_xref=GOA:Q7W0A2,InterPro:IPR000362,InterPro:IPR005677,InterPro:IPR008948,InterPro:IPR018951,InterPro:IPR020557,InterPro:IPR022761,InterPro:IPR024083] [protein=fumarate hydratase class II] [protein_id=CAE40628.1] [location=256543..257934] [gbkey=CDS]
ATGAAAACCCGCACCGAAAAAGACACTTTCGGCCCGATCGAGGTGCCCGAGCAGCACCTGTGGGGCGCGC
AGACCCAGCGCTCGCTGCATTTCTTCGCGATCTCGACCGAGAAGATGCCGGTGCCGCTGGTCGCCGCCAT
GGCACGCCTGAAGCGCGCCGCCGCCAAGGTCAACGCCGAGCTGGGCGAGCTGGATCCGCAGGTCGCAGAC
GCCATCATGCGGGCCGCCGATGAGGTGATCGCCGGCAAGTGGCCCGACGAGTTTCCGCTGTCGGTCTGGC
AGACCGGCTCGGGCACGCAGAGCAACATGAACATGAACGAGGTGCTGGCCAACCGCGCCTCCGAGCTGCT
GGGCGGCGAGCGCGGCGAAGGCCGCAAGGTGCACCCCAACGACCACGTGAACCGGGGCCAGTCGTCCAAC
GATACCTTTCCGACCGCCATGCACGTGGCCGCCGCGGTCGAGGTCGAGCACCGCGTGCTGCCCGCCCTGA
AGGCGTTGCGCGGCACGCTGGCCGCCAAGAGCGCGGCGTTCTACGACATCGTCAAGATCGGTCGCACCCA
TTTGCAGGACGCCACCCCGTTGACGCTGGGCCAGGAGATCTCCGGCTACGTGGCGCAGCTGGACCTGGCC
GAGCAGCAGATCCGCGCGACGCTGGCCGGCCTGCACCAGCTGGCCATCGGCGGCACGGCGGTGGGCACCG
GCCTGAACGCGCATCCGCAGTTCAGCGCCAAGGTATCGGCCGAACTGGCCCATGACACGGGCAGCGCGTT
CGTGTCGGCGCCCAACAAGTTCCAGGCGCTGGCTTCGCACGAGGCGCTGCTGTTCGCGCACGGCGCCTTG
AAGACGCTGGCCGCCGGCCTGATGAAGATCGCCAACGATGTGCGCTGGCTGGCCAGCGGCCCGCGCTCGG
GGCTGGGCGAAATCAGCATTCCCGAGAACGAGCCGGGCAGCTCCATCATGCCGGGCAAGGTCAACCCGAC
CCAGTGCGAAGCCGTCACGATGCTGGCCGCGCAGGTCATGGGCAACGACGTGGCCATCAATGTCGGCGGG
GCCAGCGGCAACTTCGAGCTGAACGTCTTCAAGCCGCTGGTGATCCACAATTTCCTGCAGTCGGTGCGCC
TGCTGGCCGACGGCATGGTCAGCTTCGACAAGCACTGCGCGGCCGGCATCGAGCCCAACCGCGAGCGCAT
CACCGAGCTGGTCGAGCGTTCGCTGATGCTGGTGACTGCGCTCAACCCGCACATCGGCTACGACAAGGCC
GCGCAGATCGCCAAGAAGGCGCACAAGGAAAACCTGTCGCTGAAAGAGGCGGCGCTGGCGCTGGGGCACC
TGACCGAGGCGCAGTTCGCCGAGTGGGTGGTGCCGGGCGACATGACCAACGCGCGCCGCTAG
>lcl|BX640420.1_cds_CAE43224.1_2904 [gene=glyA] [locus_tag=BP2952] [db_xref=GOA:Q7VUW7,InterPro:IPR001085,InterPro:IPR015421,InterPro:IPR015422,InterPro:IPR015424,InterPro:IPR019798] [protein=serine hydroxymethyltransferase] [protein_id=CAE43224.1] [location=complement(8611..9858)] [gbkey=CDS]
ATGTTCAACCGCAACCTGACCCTCGACCAGGTGGATCCCGACGTCTGGGCCGCCATCCAGAAAGAAGACG
TACGCCAGGAACAGCACATCGAGCTGATCGCGTCCGAGAACTACGCCAGCCCCGCCGTGATGCAGGCCCA
GGGCACGCAACTGACCAACAAGTATGCGGAAGGCTACCCGGGCAAGCGCTACTACGGCGGTTGCGAGTAC
GTCGACGTGGTCGAGCAGCTGGCCATCGACCGCCTGAAGCAGATTTTCGGCGCCGAGGCCGCCAACGTGC
AGCCGAACTCCGGCTCGCAGGCCAACCAGGGCGTGTACATGGCGGTGCTCAAGCCGGGCGATACCGTGCT
GGGCATGAGCCTGGCCGAAGGCGGTCACCTGACGCACGGCGCGTCGGTCAACGCCTCGGGCAAGCTGTAC
AACTTCGTGCCCTACGGCCTGGACGCCGACGAGGTGCTGGACTACGCCCAGGTCGAGCGGCTGACCAAGG
AACACAAGCCCAAGCTGATCGTGGCCGGCGCCTCCGCGTACGCGCTGCACATCGACTTCGAGCGCATGGC
GCGCATCGCCCACGACAACGGCGCGCTGTTCATGGTGGACATCGCCCACTATGCCGGCCTGGTGGCCGGC
GGCGCCTATCCCAACCCGGTGCCGCACGCCGATTTCGTCACCTCCACCACGCACAAGTCGCTGCGCGGCC
CGCGCGGCGGCGTCATCATGATGAAGGCCGAGTTCGAGAAGGCCGTCAATTCGGCCATCTTCCCGGGCAT
CCAGGGCGGTCCGCTGATGCACGTCATCGCGGCCAAGGCCGTGGCCTTCAAGGAAGCGCTGTCGCCCGAG
TTCCAGGATTACGCCCAGCAGGTCGTCAAGAACGCCAAGGTGCTGGCCGATACGCTGGTCAAGCGCGGCC
TGCGCATCGTGTCGGGCAGGACCGAAAGCCACGTCATGCTGGTGGACCTGCGTCCCAAGGGCATTACCGG
CAAGGAAGCGGAAGCGGTGCTGGGCCAGGCCCACATCACGGTCAACAAGAACGCCATTCCCAACGACCCG
GAAAAGCCCTTCGTGACCAGCGGCATCCGCCTGGGCACTCCGGCCATGACCACCCGCGGCTTCAAGGAGG
CCGAGGCCGAGCTGACCGCCAACCTGATCGCCGACGTGCTGGACAATCCGCGCGACGAGGCGAACATCGC
CGCGGTGCGCGCGCGGGTCAATGAACTGACCGCCCGCCTGCCCGTCTACGGCAACTGA
>lcl|BX640418.1_cds_CAE42760.1_2440 [gene=icd] [locus_tag=BP2488] [db_xref=GOA:Q7VVZ2,InterPro:IPR001804,InterPro:IPR004439,InterPro:IPR019818,InterPro:IPR024084,UniProtKB/TrEMBL:Q7VVZ2] [protein=isocitrate dehydrogenase [NADP]] [protein_id=CAE42760.1] [location=complement(204636..205892)] [gbkey=CDS]
ATGTCCTATCAACATATCAAGGTTCCCACTGGGGGCCAAAAAATCACGGTCAACGCCGATTACTCGCTGA
ATGTGCCCGATCAGGTCATCATTCCGGTCATCGAGGGTGACGGTACGGGCGCCGACATCACGCCGGTGAT
GATTAAGGTCGTCGACGCGGCCGTGCAGAAGGCCTATGCGGGCAAGCGCAAGATCCACTGGATGGAAGTC
TACGCCGGCGAGAAGGCCACCAAGGTCTACGGCCCGGACGTCTGGCTGCCCGAGGAAACCCTCGACGCCG
TCAAGGACTACGTGGTGTCGATCAAGGGTCCGCTGACCACGCCGGTCGGCGGCGGCATCCGTTCGCTGAA
CGTGGCGCTGCGCCAGCAGCTGGACCTGTATGTCTGCCTGCGCCCGGTGCGCTACTTCAAGGGCGTGCCC
TCGCCGGTGCGCGAGCCCGAGAAGACCGACATGGTCATCTTCCGCGAGAACTCGGAAGACATCTACGCGG
GCATCGAGTACATGGCCGAGTCCGAGCAGGCCAAGGACCTGATCCAGTACCTGCAGACCAAGCTGGGCGT
GACCAAGATCCGCTTCCCGAACACCTCGTCGATCGGCATCAAGCCGGTTTCGCGCGAAGGCACCGAGCGC
CTGGTGCGCAAGGCGCTGCAGTACGCCATCGACAATGACCGCGCCTCGGTGACCCTGGTCCACAAGGGCA
ACATCATGAAGTTCACGGAAGGCGGCTTCCGCGACTGGGGCTACGCCCTGGCCCAGAACGAGTTCGGCGC
GCAGCCGATCGACGGCGGCCCGTGGTGCAAGTTCAAGAATCCCAAGACGGGTCGCGAGATCATCGTCAAG
GATTCGATCGCCGACGCCTTCCTGCAGCAGATCCTGCTGCGTCCGGCCGAATACGACGTGATCGCCACGC
TGAACCTGAACGGCGACTACATCTCCGACGCGCTGGCCGCGCAAGTGGGCGGCATCGGCATTGCCCCGGG
CGCCAACCTGTCGGATTCCGTGGCCATGTTCGAAGCCACCCACGGCACCGCGCCGAAGTACGCGGGCAAG
GACTACGTGAACCCCGGTTCCGAAATCCTGTCGGCCGAAATGATGCTGCGCCACATGGGCTGGACCGAGG
CCGCCGACCTGATCATCGCCAGCATGGAGAAATCCATCCTGTCCAAGAAGGTCACCTATGACTTCGCCCG
TCTGCTCGAAGGCGCCACCCAGGTGTCGTGCTCGGGCTTCGGTCAGGTCATGATCGACAATATGTAA
>lcl|BX640418.1_cds_CAE42692.1_2372 [gene=pepA] [locus_tag=BP2421] [db_xref=GOA:Q7VW48,InterPro:IPR000819,InterPro:IPR008283,InterPro:IPR011356,InterPro:IPR023042] [protein=cytosol aminopeptidase] [protein_id=CAE42692.1] [location=131847..133346] [gbkey=CDS]
ATGGAATTTAGCACACAGACCACTGCCTCCCTGCATCAGATCAAGACTGCGGCCCTGGCCGTCGGCGTCT
TCGCCGACGGCGTGCTCAGCGCCGCCGCCGAAGTCATCGACCGCGCCAGCCACGGTGCCGTGGCCGCCGT
GGTGAAAAGCGAGTTCCGCGGCCGCACCGGCAGCACGCTGGTGCTGCGCAGCCTGGCCGGCGTCAGCGCC
CAGCGCGTGGTGCTGGTGGGCCTGGGCAAGCAGGCCGAATACAACGCCCGCGCGCACGCCAGCGCCGAAC
AGGCGTTCGCCGCGGCGTGCGTCGCGGCCCAGGTGGGCGAAGGCGTGTCGACCCTGGCCGGCGTGGCCAT
CGAGGGCGTGCCGGTGCGCGCCCGCGCGCGCAGCGCCGCCATCGCCGCGGGCGCGGCGGCCTACCATTAC
GATGCGACGTTCGGCAAGGCCAATCGCGACGCCCGCCCCAGGTTGAAGAAAATCGTCCAGGTGGTCGACC
GCGCGGCCTCCGCGCAGGCGCAGCTGGGCCTGCGCGAAGGCGCGGCCATCGCCCACGGCATGGAATTGAC
CCGCACGCTGGGCAACCTGCCCGGCAACGTGTGCACGCCGGCCTATCTCGGCAATACCGCCAAGAAACTG
GCGCGCGAATTCAAGAGCCTCAAGGTCGAGGTGCTCGAACGCAAGCAGGTCGAGGCGCTGGGCATGGGCT
CGTTCCTCTCGGTCGCGCGCGGCTCGGAAGAACCGCTGCGCTTCATCGTGCTGCGCCATGCCGGCAAGCC
CGCCAAGAAGGACAAGGCCGGCCCGGTCGTCCTGGTGGGCAAGGGCATCACCTTCGATGCTGGCGGCATC
TCGCTCAAGCCGGCCGCCACGATGGACGAAATGAAGTACGACATGTGCGGCGCGGCCAGCGTGCTGGGCA
CGTTCCGCGCCCTGGCCGAGCTGGAGCTGCCGCTGGATGTGGTGGGCCTGATCGCGGCGTGCGAGAACCT
GCCCAGCGGCAAGGCCAACAAGCCCGGCGACGTGGTCACCAGCATGTCGGGCCAGACCATCGAGATCCTC
AACACCGACGCCGAAGGCCGCCTGGTGCTGTGCGATGCCCTGACCTACGCCGAGCGCTTCAAGCCCGCGG
CCGTGATCGACATCGCCACGTTGACCGGCGCCTGCGTGGTAGCCCTGGGCAACGTCAATAGCGGCCTGTT
CTCCAAGGACGACGCGCTGGCCGACGCGCTGCTGGCCGCCAGCCGCCAGTCGCTCGACCCGGCCTGGCGC
CTGCCGCTGGACGATGCCTACCAGGACCAGCTCAAGTCCAACTTCGCCGACATCGCCAACATCGGCGGCC
CCCCGGCCGGCGCGGTCACGGCGGCCTGCTTCCTGTCGCGCTTCACCAAGGCTTATCCGTGGGCGCACCT
GGACATCGCCGGCACGGCCTGGCGCGGCGGCAAGGACAAGGGCGCCACCGGCCGGCCGGTGCCGCTGCTG
ATGCAGTACCTGCTGGACCAGGCAGGCTGA
>lcl|BX640420.1_cds_CAE43408.1_3088 [gene=pgm] [locus_tag=BP3141] [db_xref=GOA:Q7VUF5,InterPro:IPR005841,InterPro:IPR005843,InterPro:IPR005844,InterPro:IPR005845,InterPro:IPR005846,InterPro:IPR016055,InterPro:IPR016066,UniProtKB/TrEMBL:Q7VUF5] [protein=phosphoglucomutase] [protein_id=CAE43408.1] [location=217601..218983] [gbkey=CDS]
GTGGCGCACCCCTTTCCCGCATCGGTCTACAAGGCGTACGACATCCGTGGCTCGGTTCCCGACCAGCTCG
ACCCGGTATTCGCCCGGGCGCTGGGCCGCGCCCTGGCCGCCAGCGCCCGCGCGCAGGGCATCGGCGCCCT
GGTGGTCGGCCGCGACGGCCGCCTGAGCAGCCCCGACCTGGCCGGCGCGCTGCAGGAAGGCATCATGGAA
GGCGGCGTGGACACCCTGGACATCGGCCAGGTGCCCACGCCGCTGGTCTATTTCGCGGCGCACATCCAGG
GCACGGGCTCGGGCGTGGCGGTCACCGGCAGCCACAACCCGCCGCAGTACAACGGCTTCAAGATGATGAT
GGGCGGCCAGGCCCTGTACGGCCCGGCCGTGCAGGCGCTGCGCCCGGCCATGCTGGCGCCGGCTGCGGCG
CCGGGCACCTGGGGCGAACGCCGCCAGCTCGATGTCGTCCCCGCCTATATCGAGCGCATCGTGTCCGACG
TGAAGCTGGCGCGCCCCATGAAGATCGCCGTCGACTGCGGCAATGGCGTGGCCGGCGCCCTGGCGCCGCA
ACTGTTCCGCGCGCTGGGTTGCGAAGTGGACGAGCTCTATTGCGAGGTCGACGGCACGTTTCCCAACCAC
CATCCCGACCCGGCCGAACCGCGCAACCTGCAGGACCTGATCGCCCATGTCACCAGCACCGACTGCGAGC
TGGGCCTGGCCTTCGACGGCGACGGCGACCGCCTCGGCGTGGTGACCAAGTCCGGCCAGATCATCTGGCC
CGACCGCCAGCTGATCCTGTTCGCCCGCGACGTGCTGGCCCGCTGTCCCGGCGCGACCATCATCTATGAC
GTCAAGTGCAGCCAGCACGTGGGCGTGGCCATCGAGCAAAGCGGCGGCGTGCCGCTGATGTGGCAGACTG
GCCATTCGCTGGTGAAGGCCAAGCTGGCCGAGACCGGCGCGCCGCTGGCCGGCGAGATGAGCGGCCATAT
CTTCTTCAAGGAGCGCTGGTACGGCTTCGACGACGGCCTGTACACCGGCGCCCGCCTGCTGGAAATCGTC
TCCCGCGAAACCGATGCGTCGCGCCCGCTGGAGGCCCTGCCGCAGGCGCTGTCGACCCCCGAGCTCAAGC
TGGAGATGGCCGAGGGCGAGCCGCATGCGCTGATCGCCGCCCTGCAGCAGCAGGGCGAGTTCGCCAGCGC
CAGCCGGCTGGTTACGATAGACGGCGTGCGCGCGGAATACCCGGACGGCTTCGGGCTGGCGCGCGCCTCC
AATACCACCCCCGTCGTCGTGCTGCGCTTCGAAGCGGAGACCGAGCCGGGCCTGGCCCGCATCCAGCAGG
AATTCCGCCAGCAGCTGCTGCGGCTGGCTCCGCAAGCCAAACTGCCCTTCTGA
>lcl|BX640416.1_cds_CAE42081.1_1761 [gene=tyrB] [locus_tag=BP1795] [db_xref=GOA:Q7VXH5,InterPro:IPR000796,InterPro:IPR004838,InterPro:IPR004839,InterPro:IPR015421,InterPro:IPR015424,UniProtKB/TrEMBL:Q7VXH5] [protein=aromatic-amino-acid aminotransferase] [protein_id=CAE42081.1] [location=complement(151299..152501)] [gbkey=CDS]
ATGAGCACTCTTTTCGCTTCCGTCGAACTCGCGCCGCGCGACCCCATTCTTGGCCTGAACGAACAGTACA
ACGCCGATACCCGTCCCGGCAAAGTGAACCTGGGCGTGGGCGTGTACTACGACGACGAAGGCCGCATCCC
GCTGCTTCAGGCCGTGCGCAAGGCCGAGGTGGCCCGCATCGAAGCCGCCGCCGCCCGCGGCTATCTGCCG
ATCGAAGGCATCGCGGGGTACAACAAGGGTGCGCAGGCGCTGCTGCTGGGCGCCGACTCGCCGCTGGCCG
CCGAAGGCCGCGTGCTGACCGCGCAGGCCCTGGGCGGCACCGGCGCGCTGAAGATCGGCGCCGACTTCCT
GCGCCAGCTGCTGCCGCAGTCCAAGGTCCTCATCAGCGACCCCAGCTGGGAAAACCACCGCGCCCTGTTC
GAGCGCGCCGGCTTCCCGGTCGAGACCTACGCTTATTACGATGCCGCCACCCATGGCCTGAACTTCGAAG
CCATGCTGGCCGCCCTGCAGGCCGCGCCCGAACAGACCATCGTGGTGCTGCACGCCTGCTGCCACAACCC
GACCGGCGTCGATCCCACGCCGCAACAGTGGGAACAGATCGCCGCCGTGGTCAAGGCGCGCAACCTGGTG
CCGTTCCTCGACATCGCCTACCAGGGCTTCGGCGAAGGCCTGGAGCAGGACGCCGCCGTGGTGCGCATGT
TCGCCGCGCTCGACCTGACCATGTTCATCAGCTCGTCGTTCTCCAAGTCCTTCTCGCTGTATGGCGAGCG
GGTCGGGGCCCTGACCGTGGTGGCCGGCAGCAAGGACGAGGCCGCCCGCGTGCTCAGCCAGCTCAAGCGC
GTGATCCGCACCAACTACTCCAACCCGCCCACCCACGGCGGCACCGTGGTGTCCACGGTCCTGAACACAC
CCGAGCTGTTCGCGCTCTGGGAAAATGAACTGGCCGGCATGCGCGACCGCATCCGCCTGATGCGCAAGGA
GCTGGTCGAGAAGATCAAGACCCAGGGCGTGGCGCAGGACTTCAGCTTCGTGCTGGCGCAGCGCGGCATG
TTCTCGTACTCGGGCCTGACCGCCGCCCAGGTCGATCGCCTGCGCGAAGAGCACGGCATCTACGCGGTCT
CCAGCGGCCGCATCTGCGTGGCCGCGCTCAACAGCCGCAACATCGACGCGGTCGCGGCCGGCATCGCCGC
GGTGCTGAAGTAG

View File

@@ -0,0 +1,2 @@
id,st,clonal-complex,adk,fumC,glyA,icd,pepA,pgm,tyrB
lcl|BX640419.1_cds_CAE43044.1_2724-lcl|BX640411.1_cds_CAE40628.1_248-lcl|BX640420.1_cds_CAE43224.1_2904-lcl|BX640418.1_cds_CAE42760.1_2440-lcl|BX640418.1_cds_CAE42692.1_2372-lcl|BX640420.1_cds_CAE43408.1_3088-lcl|BX640416.1_cds_CAE42081.1_1761,1,ST-2 complex,1,1,1,1,1,1,1
1 id st clonal-complex adk fumC glyA icd pepA pgm tyrB
2 lcl|BX640419.1_cds_CAE43044.1_2724-lcl|BX640411.1_cds_CAE40628.1_248-lcl|BX640420.1_cds_CAE43224.1_2904-lcl|BX640418.1_cds_CAE42760.1_2440-lcl|BX640418.1_cds_CAE42692.1_2372-lcl|BX640420.1_cds_CAE43408.1_3088-lcl|BX640416.1_cds_CAE42081.1_1761 1 ST-2 complex 1 1 1 1 1 1 1