GlobalChem: Your Chemical Knowledge Graph
  • Welcome to the GlobalChem Documentation!
  • Quick Start
  • Extensions
  • API
    • GlobalChem
    • Graph Algorithm
  • Mother Nature
    • Mother Nature Commands
    • Discord Roles
  • Cheminformatics
    • SMILES Validation
    • Decoding Fingeringprints and SMILES to IUPAC
    • SMILES to PDF And Back
    • Drug Design Filters
    • Deep Layer Scatter
    • Identifier SMARTS
    • Protonating SMILES
    • Sunbursting SMILES
    • Visualizing SMARTS
    • One-Hot Encoding SMILES
    • Principal Component Analysis SMILES
    • GlobalChem Graph to Networkx Graph
    • Amino Acid Sequence to SMILES
    • Scaffold Graph Adapter
  • Bioinformatics
    • GlobalChem Protein
    • GlobalChem RNA
    • GlobalChem DNA
    • GlobalChem Bacteria
    • GlobalChem Monoclonal Antibody
  • Quantum Chemistry
    • Z-Matrix Store
    • Psi4Parser & Orbital Visualizer
  • ForceFields
    • GlobalChem Molecule
    • CGenFF Molecule
    • GAFF2 Molecule
    • CGenFF Dissimilarity Score
  • Development Operations
    • Open Source Database Monitor
  • Graphing Templates
    • Plotly
Powered by GitBook
On this page
  1. Bioinformatics

GlobalChem Bacteria

GlobalChem has the concept of a Bacteria Pythonic Model that can hopefully be connected down to SMILES as we evolve. Bacteria can be classified in many different ways but for GlobalChem there is exact classifiers per some parameters. See the function to get all the classifiers out.

Import the Package

from global_chem_extensions import GlobalChemExtensions
bioinformatics = GlobalChemExtensions().bioinformatics()

Initialize a Bacteria Instance

bacteria = bioinformatics.initialize_globalchem_bacteria(
        name='staphylococcus',
        cell_wall_composition='thick_peptidoglycan',
        genus_name = '',
        species_name = '',
        family = 'chlorobiaceae',
        gram_positive = False,
        gram_negative = False,
        inner_membrane = None,
        outer_membrane = None,
        shape = None,
        nutrition_type = None,
        respiratory = None,
        environment = None,
        antisera = None,
        universal_phylogenetic_tree_rna_sequence = None,
        taxonomic_hierarchy = None,
 )

Get Bacteria Classifiers

bacteria.get_classifiers()
PreviousGlobalChem DNANextGlobalChem Monoclonal Antibody

Last updated 3 years ago