Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Robaina committed Sep 11, 2023
1 parent bac3fcc commit 8de18ee
Show file tree
Hide file tree
Showing 4 changed files with 286 additions and 220 deletions.
3 changes: 0 additions & 3 deletions src/brendapyrser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
from .parser import (BRENDA, ReactionList,
EnzymeDict, EnzymePropertyDict,
EnzymeConditionDict, Reaction)
108 changes: 54 additions & 54 deletions src/brendapyrser/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,60 +6,60 @@
"""

fields = {
'AC': 'activating compound',
'AP': 'application',
'CF': 'cofactor',
'CL': 'cloned',
'CR': 'crystallization',
'EN': 'engineering',
'EXP': 'expression',
'GI': 'general information on enzyme',
'GS': 'general stability',
'IC50': 'IC-50 Value',
'ID': 'EC-class',
'IN': 'inhibitors',
'KKM': 'Kcat/KM-Value substrate in {...}',
'KI': 'Ki-value, inhibitor in {...}',
'KM': 'KM-value, substrate in {...}',
'LO': 'localization',
'ME': 'metals/ions',
'MW': 'molecular weight',
'NSP': 'natural substrates/products reversibilty information in {...}',
'OS': 'oxygen stability',
'OSS': 'organic solvent stability',
'PHO': 'pH-optimum',
'PHR': 'pH-range',
'PHS': 'pH stability',
'PI': 'isoelectric point',
'PM': 'posttranslation modification',
'PR': 'protein',
'PU': 'purification',
'RE': 'reaction catalyzed',
'RF': 'references',
'REN': 'renatured',
'RN': 'accepted name (IUPAC)',
'RT': 'reaction type',
'SA': 'specific activity',
'SN': 'synonyms',
'SP': 'substrates/products, reversibilty information in {...}',
'SS': 'storage stability',
'ST': 'source/tissue',
'SU': 'subunits',
'SY': 'systematic name',
'TN': 'turnover number, substrate in {...}',
'TO': 'temperature optimum',
'TR': 'temperature range',
'TS': 'temperature stability'
"AC": "activating compound",
"AP": "application",
"CF": "cofactor",
"CL": "cloned",
"CR": "crystallization",
"EN": "engineering",
"EXP": "expression",
"GI": "general information on enzyme",
"GS": "general stability",
"IC50": "IC-50 Value",
"ID": "EC-class",
"IN": "inhibitors",
"KKM": "Kcat/KM-Value substrate in {...}",
"KI": "Ki-value, inhibitor in {...}",
"KM": "KM-value, substrate in {...}",
"LO": "localization",
"ME": "metals/ions",
"MW": "molecular weight",
"NSP": "natural substrates/products reversibilty information in {...}",
"OS": "oxygen stability",
"OSS": "organic solvent stability",
"PHO": "pH-optimum",
"PHR": "pH-range",
"PHS": "pH stability",
"PI": "isoelectric point",
"PM": "posttranslation modification",
"PR": "protein",
"PU": "purification",
"RE": "reaction catalyzed",
"RF": "references",
"REN": "renatured",
"RN": "accepted name (IUPAC)",
"RT": "reaction type",
"SA": "specific activity",
"SN": "synonyms",
"SP": "substrates/products, reversibilty information in {...}",
"SS": "storage stability",
"ST": "source/tissue",
"SU": "subunits",
"SY": "systematic name",
"TN": "turnover number, substrate in {...}",
"TO": "temperature optimum",
"TR": "temperature range",
"TS": "temperature stability",
}

units = {
'KM': 'mM',
'KI': 'mM',
'TN': '$s^{-1}$',
'SA': '$µmol.min^{-1}.mg^{-1}$',
'KKM': '$mM^{-1}.s^{-1}$',
'TO': '${}^oC$',
'TR': '${}^oC$',
'TS': '${}^oC$',
'MW': 'Da'
}
"KM": "mM",
"KI": "mM",
"TN": "$s^{-1}$",
"SA": "$µmol.min^{-1}.mg^{-1}$",
"KKM": "$mM^{-1}.s^{-1}$",
"TO": "${}^oC$",
"TR": "${}^oC$",
"TS": "${}^oC$",
"MW": "Da",
}
Loading

0 comments on commit 8de18ee

Please sign in to comment.