AMBIT. Modules. Database. Chemical compounds. Table Error! No text of specified style in document..1

Size: px
Start display at page:

Download "AMBIT. Modules. Database. Chemical compounds. Table Error! No text of specified style in document..1"

Transcription

1 AMBIT AMBIT is open source software for chemoinformatics data management developed with funding industry via CEFIC LRI funded project. AMBIT2 software consists of a database and functional modules allowing a variety of queries and data mining of the information, stored in the database and is distributed under xxx licence. AMBIT XT is a user friendly application with a graphical user interface, based on AMBIT2 modules and is distributed under LGPL licence. AMBIT XT provides a set of functionalities to facilitate evaluation and registration of the chemicals for REACH. AMBIT XT introduces the concept of workflows, allowing guiding the users step by step towards achieving particular goal, and provides workflows for analogue identification and PBT assessment. The software is a standalone application, with an option to install the database on a server. Modules Ambit is organised in several modules with well defined dependency. Table Error! No text of specified style in document..1 Database AMBIT database is a relational database, consisting of several repositories for compounds, properties, QSAR models, users, references, as well as several tables containing pre-processed information which allows speeding up the substructure and similarity queries. The current implementation is based on MySQL. Database functionality is provided by ambit2-db module. Table Error! No text of specified style in document..2 Chemical compounds The chemical compounds are stored in the table chemicals and assigned an unique number. If connectivity is available, an unique SMILES, as well as InChI and molecular formula is generated and stored. The database supports multiple 3D structures per compound, either coming from different inventories, or generated by external programs and imported into the database. The chemical structures are stored into table structure as a compressed text, where supported formats are SDF, MOL and CML. The choice of text format makes the database transparent and easy to be used by external software. Support of multiple formats is motivated by the need to keep the data in the original format. If the original format is not one of the above formats, it is converted to MOL. Support of internal formats will be extended in future releases. 1

2 Data provenance The database provides means to identify the origin of the data, i.e., the specific inventory a compound originated from. An inventory is identified by its name and reference (tables src_dataset). Each compound might belong to multiple inventories (table struc_dataset), thus allowing users to select the compounds of interest for specific regulatory purposes. Moreover, the data provenance indicator can distinguish between different conformations, for example in cases where a particular conformation of a compound comes from one inventory and a different conformation comes from another inventory. Updates of the chemical structures are recorded and subsequent versions are stored in the history table. While importing structures from a file, they are stored in its original format into the structure table. If the structure is subsequently updated as a result of a specific calculation (e.g. 3D conversion) or another structure import step (e.g. updated version of the original file), the new version will be stored and become currently available, while the previous version will be moved to the history table. Quality Assurance The discrepancy between structures, available in chemical databases presents a challenge for AMBIT as a data integration platform. In order to raise the awareness of possible incorrect structures that might be imported from external sources, AMBIT allows assigning quality labels to each chemical., as follows: Manual verification by expert(s). Any user can assign quality labels and explain the reason of the assignment (table quality_structure). The reasons can include discrepancies between registry numbers, names and structure, expert knowledge, manual comparison with external sources, etc. o 'OK' The structure is correct o 'ProbablyOK' Most probably the structure is correct, but some issues still need to be verified. o 'Unknown' Not possible to assign a definite label. o 'ProbablyERROR' Most probably there is an error o 'ERROR' The structure is definitely wrong. Automatically verified, by comparing the structures available under the same chemical compound entry (e.g. imported from different sources) table quality_chemicals o Consensus' all structures under the same chemical compound entry are the same o 'Majority' Majority of structures under the same chemical compound entry are the same, but there are small number of structures, which differ from the majority o 'Ambiguous' There is no majority of equal structures under the same chemical compound entry (e.g. structures come from 3 different sources and all the three structures are different) 2

3 o o 'Unconfirmed' The structure comes from a single source and it is impossible to make a comparison. 'Unknown' No information about the structure (e.g. no connectivity) Potential examples of QA in Ambit Automatic comparison with different sources of chemical structures may reveal discrepancies between, as illustrated below. The first one is the chemical with CAS The structure provided in the set is incomplete. In the second example the structure with CAS provided in tone of the datasets has erroneous structure, ethyl substitution on the wrong nitrogen in a ring. Identifiers, Descriptors and Properties 3

4 The database schema is designed to provide unified storage for arbitrary number of text (e.g. registry numbers or names), and numerical properties (e.g. descriptors, experimental data). The properties are not predefined, but stored in the database on demand, e.g. AMBIT database is ready to incorporate any number of chemical compounds, identifiers, descriptors and experimental data. A property (table properties) is identified by a name and reference, thus allowing properties with coinciding names, but originating from different sources to be distinguished (e.g. LogP calculated internally by different methods and LogP imported from an external file). Every newly added property or descriptor is added to a properties table, with information about the property/descriptor name, units, alias and reference. The reference for a property, imported from a file is the name of the file itself, while the reference for a descriptor contains the name of the software used for calculation. The alias usually contains a copy of the name, except in cases, when the property is recognised as a specific type of registry number or a chemical name. In this case, the alias is assigned a fixed value (e.g. CasRN or Names). Fields with the same meaning, but different names can be assigned the same alias, in order to facilitate queries (e.g. species field same across all endpoints in order to be able to search for species). The flat list of properties provides a flexible storage, but presenting a long list of properties and descriptors in the user interface might be confusing. Templates (tables template and template_def) allows to organize properties in groups: Table Error! No text of specified style in document..3 Templates themselves can be organized hierarchically, with the help of table dictionary. The database is distributed with a set of default templates, including top level templates Endpoints, Identifiers, Datasets and Descriptors and a number of endpoints, according to ECHA endpoints classification 1. Convenience view ontology, combines the templates with its hierarchical organisation. An excerpt of this view is shown below: Table Error! No text of specified style in document..4 The user interface navigator allows viewing and organizing properties and templates in convenient mode. 4

5 By default, properties imported from a file with chemical compounds belong to the dataset of origin, but can be moved to any user selected group. Quality labels can also be assigned to any property value, stored in the database (table quality_labels): 'OK' The value assigned to property is correct 5

6 'ProbablyOK' Most probably the value is correct, but some issues still need to be verified. 'Unknown' Not possible to assign a definite label. 'ProbablyERROR' Most probably there is an error 'ERROR' The value assigned to this property is definitely wrong. Queries The results of the searches a user performs are stored into query and queryresults tables. Besides providing ability to record user actions, this enables browsing query results at a later moment and combining queries with arbitrary logic. Search methods Exact structure, fixed sub-structures, similarity, SMARTS The core substructure search functionality (graph isomorphism) is provided either by the CDK cheminformatics library or by a faster algorithm, implemented in AMBIT. Substructure search is an computationaly intensive (NP 1 -hard) problem, which means that the complexity of the algorithm increases rapidly with the size of the molecule. To speed-up substructure searching in large datasets, a pre-calculated fingerprints are used to identify structures, potentially containing the substructure. The AMBIT database and software combines this technique with fast relational database queries, which results in very fast substructure searching in large datasets. In addition, fingerprints are a standard tool for representing chemical structures to assess structural similarity by calculating Tanimoto coefficient between two fingerprints. Similarity Fingerprint generation was based on the fingerprint implementation by open source cheminformatics library, The Chemistry Development Kit and follows the ideas of Daylight fingerprint theory that states 2 : (1) for a given molecule all possible paths for a predefined length (default is 7) are generated, (2) the path is submitted to a hash function which uses it as a seed to a pseudo-random generator, (3) the hash function outputs a set of bits, and (4) the set of bits thus produced is added (with a logical OR) to the fingerprint. Ambit uses 1024 bit fingerprints by default. The Tanimoto coefficient is calculated as Tanimoto N A N B /(N A +N B -N A N B ), where N A is the number of bits on in fingerprint A, N B is the number of bits on in fingerprint B and N A \N B is the number of bits on in both fingerprints. Since Tanimoto distance is a pair-wise measure, and here the objective is to assess the similarity to the set of molecules, we generate a consensus fingerprint, which is again 1024 bit fingerprint where each bit is set. 1 non-deterministic polynomial-time 6

7 Atom environments (AE) can be regarded as fragments 3,4, surrounding each atom in a molecule, up to a predefined level. The calculation procedure is as follows. First, atom types to be included in the generation of AEs are selected. We use 34 atom types, listed in table 2, which are very similar to Sybyl atom types that have been recommended in Bender et al. The choice is based on the available atom type parameterization in CDK library. Next, a vector of length (34 *L+1) is constructed for each atom, where L is the maximum level for generating atom environments and L=3 by default. Third, for each atom, neighbors at level 1, 2, 3 are identified and corresponding counts stored in the vector. An example of a string representation of the result for a single atom (C.sp2) is: C.sp2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 Note that if there are several C.sp2 atoms with the same neighbours up to 3rd level in the molecule, they will have the same string representation. We will refer to this representation as a fragment. AEs could be compared by Tanimoto distance (see above), where NA is the number of fragments in molecule A, NB is the number of fragments in molecule B and NA NB is the number of common fragments between the two molecules. Here, we take average Tanimoto distance for the nearest neighbours, instead of defining consensus fingerprint. For each molecule, the similarity measure is the averaged Tanimoto distance between the molecule and its 5 nearest molecules. Table Error! No text of specified style in document..5 Substructure search The implementation of sub-structure searching allows only fixed structures (e.g. no wild cards for atoms and bonds). The structure is drawn using structure diagram editor (JChemPaint 5 ) and submitted as a hydrogen depleted structure, which might presents difficulties in distinguishing certain types of functional groups (e.g. aldehydes vs. carbonyls, amines vs. nitro groups). AMBIT also allows querying the database by Smiles ARbitrary Target Specification (SMARTS) language 6, accelerated with certain pre-processed information for structural features, stored in the database. The SMARTS specification was originally developed and maintained by Daylight Inc. 7, but is supported by many more commercial and open source software suites 8, 9, 10. A list of predefined functional groups and their SMARTS definition is available but formulating more complex queries requires knowledge of SMARTS. The SMARTS line notation allows extremely precise and transparent substructural specification and atom typing. SMARTS expressions for atoms and bonds can be combined by logical operators to form more complex queries. Recursive SMARTS allow detailed specification of an atom's environment. For example the more reactive (with respect to electrophilic aromatic substitution) ortho and para carbon atoms of phenol can be defined as: [$(c1c([oh])cccc1),$(c1ccc([oh])cc1)]; Atoms that are in an environment where (the atom is connected to an aliphatic oxygen) and where (the atom is connected to two sequential aliphatic carbons) as [$(*O);$(*CC)]. 7

8 Various queries and their combinations on properties, inventories and quality labels are available. A query can be restricted to search for compounds within specified dataset or another query. 3D structure generation AMBIT module ambit2-smi23d integrates the open source 3D coordinate generation smi23d for generation of an initial 3D structure from connectivity matrix 11. The initial structure is further optimized by OpenMOPAC , which is embedded into ambit2-mopac module. Molecular descriptors Ambit provides facilities to calculate and store descriptors for all chemical structures in the database, as well as specification of search criteria based on descriptor values. The CDK library based descriptors 13 are shown in Table Error! No text of specified style in document..6. Descriptors, implemented in ambit descriptors module are listed in Table Error! No text of specified style in document..7. [Table Error! No text of specified style in document..6] [Table Error! No text of specified style in document..7.] Workflow engine 8

9 A workflow engine is a software application, which manages and executes modelled business processes. In general, the models can be edited by non-programmers, using workflow editors. The workflow models might be as simple as series of sequential steps, but also be complex, including many conditions and loops. The Workflow Management Coalition provides standards for defining workflows in a XML based format 14. Following the recognized importance of support for workflows in AMBIT, number of existing open source workflow engines were evaluated for suitability to be embedded into AMBIT XT application. The final decision of embedding micro-workflow is based on a trade-off between simplicity and available functionalities 15. AMBIT XT is entirely based on micro-workflow engine, providing extensible platform for workflow based wizards and facilitating recording of user actions. Workflow for analogue identification The workflow will consist of the following steps 1. Definition of the starting structure or set of structures. The structure(s) can be defined as: Identifiers (e.g. CAS, EINECS number, name). Structure, represented as SMILES, MOL, SDF, drawn manually by the structure diagram editor, available in AMBIT or drawn using externally installed ISIS/Draw software, copied to the system clipboard and then pasted into AMBIT user interface. 2. Basic analogue search, consists of a similarity search (hashed fingerprints compared by Tanimoto distance by default). 3. The results are displayed in the Structure browser. The user can decide to restrict the forthcoming queries within the set of selected structures. 4. Substructure search by user-defined fragment. 5. The results are displayed in the Structure browser. The user can decide to restrict forthcoming queries within the set of selected structures. 6. Further filtering of the results by conducting additional compound profiling based on experimental and calculated data (LogKow, Dmax, other 2D and 3D descriptors chosen by the user). 7. The results are displayed in the Structure browser. The user can decide to restrict the forthcoming queries within the set of selected structures. 8. The selected structures are grouped into typical chemical classes or by clustering, allowing the user to inspect small groups of analogues and derive the final decision of the query compound(s). 9. The system proposes to calculate the final value by average, min-max, Euclidean distance to user selected properties Workflow for REACH PBT and vpvb (Persistence, Bioaccumulation and Toxicity) assessment 9

10 REACH requires for every substance to be registered and not exempted a PBT & vpvb Assessment if the tonnage exceeds 10 tons/year. The REACH PBT & vpvb Assessment allows a straightforward, user friendly and quick assessment if the necessary information is available. An important goal is to rapidly identify those REACH substances which are not PBT & vpvb. In addition those substances identified as a potential PBT or vpvb can immediately investigated in a higher tier assessment to find out what is necessary as a next step. Such higher tier assessments are very often time consuming and costly and it has to be avoided that the strict registration deadlines cannot be met due to an ongoing PBT assessment. As the assessment is done transparently and always the same way it will allow a standardized PBT & vpvb Assessement throughout the company, independent from personal judgments of an assessor. Printing the result sheet e.g. as a PDF file allows proper documentation of the PBT & vpvb Assessment Only organic substances can be assessed. This workflow should not be applied to inorganic or organometalic substances, polymers and mixtures. PBT assessment is visually organized in five pages: definition of the substance, persistency check, bioaccumulation check, toxicity check and presenting the final results. Population of AMBIT database with data The following datasets are imported and distributed with AMBIT database: 1. EINECS list. 2. Bioconcentration factor dataset ECETOC Aquatic Toxicity data Local Lymph Node Assay (LLNA) data ECETOC Skin irritation data 19 The data is imported using the standard data import functionality. The EINECS list is publicly available at ECB site and consists of chemicals 20. Extensive verification of EINECS structures, in order to improve their reliability, based on comparison of structures with matching registry numbers and available from public sources. Quality labels has been assigned, as explained above. Bioconcentration factor dataset is distributed without structural information and chemical compounds are identified only by CAS numbers and chemical names. Structures has been retrieved from publicly available sources and imported into database. Datasets 3-5 consist of relatively small number of compounds and presumably contain high quality structures, manually checked by experts before making them publicly available. WWW- REST services Web services, allowing to use AMBIT functionality from web applications are under development. Similarity example: 10

11 -- Acknowledgements: AMBIT software was developed within the framework of CEFIC LRI project EEM- 9 Building blocks for a future (Q)SAR decision support system: databases, applicability domain, similarity assessment and structure conversions and extended under subsequent CEFIC LRI contract for developing AmbitXT. 11

12 12

13 13

14 Table Error! No text of specified style in document..1 Modules Module Description AmbitXT GUI application AmbitXT plugin: Database search and Analogue identification Ambit XT plugin, allowing various database queries and analogues identification. AmbitXT plugin: Category building Ambit XT plugin for analogues identification AmbitXT plugin: Database tools Ambit XT plugin for database import and management AmbitXT plugin: Database AmbitXT plugin for database administration activities administration AmbitXT plugin: REACH PBT assessment ambit2-base ambit2-core ambit2-hashcode ambit2-smarts ambit2-db ambit2-smi23d ambit2-mopac ambit2-ui ambit2-dbui ambit2-workflow ambit2-namestructure ambit2-model ambit2-taglibs Pubchem utilities Ambit2 REST web services AmbitXT plugin, implementing an workflow for REACH compliant Persistence, Biodegradation and Toxicity (PBT) assessment. Base classes, without cheminformatics functionality Core classes, with cheminformatics functionality Hashcodes SMARTS parser Database functionality Wrapper for Smi23d executables wrapper for OpenMopac User interface Database user interface Workflow module Chemical name to structure convertor, based on OPSIN package Similarity calculation, feature selection and QSAR model development JSP tags Pubchem access utilities Allows to query AMBIT database by REST style web services. 14

15 Table Error! No text of specified style in document..2 Tables in AMBIT2 database. Table Description Chemical structures chemicals structure history src_dataset struc_dataset catalog_references properties property_values property_string property_tuples tuples template template_def dictionary query query_results sessions user_roles roles users quality_chemicals quality_labels quality_pair quality_structure fp1024 fp1024_struc Chemical compounds Chemical structures, conformers Previous versions of chemical structures Inventories Datasets Lookup table for structures, belonging to a dataset Identifiers, Descriptors, Properties References Property definition (name,reference, units) Numerical property values or links to string values String values Tuples of properties Tuples per dataset Templates Template definition (which properties belng to a template) Templates hierarchy Queries Queries Structures per query Sessions Users support Roles, assigned to users User roles Users Quality assessment support Quality labels of structures and properties Pre-processed data for substructure, similarity and SMARTS queries Pre-processed fingerprints for pre-screening and similarity search sk1024 Pre-processed fragments for accelerating SMARTS searches 15

16 atom_distance atom_structure version Pre-processed data for atom environments similarity Schema version Database version 16

17 Table Error! No text of specified style in document..3 Templates Template Relationship Parent template Endpoints Identifiers Dataset Descriptors Top level templates Other is_a Endpoint Ecotoxic effects is_a Endpoint Toxicokinetics is_a Endpoint Environmental fate parameters is_a Endpoint Human health effects is_a Endpoint Physicochemical effects is_a Endpoint Short-term toxicity to algae (inhibition of the exponential growth rate) is_a Ecotoxic effects Toxicity to birds is_a Ecotoxic effects Direct photolysis is_a Environmental fate parameters Oxidation is_a Environmental fate parameters BAF fish is_a Bioaccumulation BAF other organisms is_a Bioaccumulation BCF fish is_a Bioconcentration BCF other organisms is_a Bioconcentration CAS number is_a Identifier RSCBook_Skinsens_dataset.sdf is_a Dataset org.openscience.cdk.qsar.descriptors.molecular.hbon dacceptorcountdescriptor org.openscience.cdk.qsar.descriptors.molecular.hbon ddonorcountdescriptor is_a is_a Descriptor Descriptor Verhaar scheme is_a Descriptor Table Error! No text of specified style in document..4 An excerpt view of ontology Template Relationship Parent template Endpoints Identifiers Dataset Descriptors Top level templates Other is_a Endpoint Ecotoxic effects is_a Endpoint Toxicokinetics is_a Endpoint Environmental fate parameters is_a Endpoint 17

18 Human health effects is_a Endpoint Physicochemical effects is_a Endpoint Short-term toxicity to algae (inhibition of the is_a Ecotoxic effects exponential growth rate) Toxicity to birds is_a Ecotoxic effects Direct photolysis is_a Environmental fate parameters Oxidation is_a Environmental fate parameters BAF fish is_a Bioaccumulation BAF other organisms is_a Bioaccumulation BCF fish is_a Bioconcentration BCF other organisms is_a Bioconcentration CAS number is_a Identifier RSCBook_Skinsens_dataset.sdf is_a Dataset org.openscience.cdk.qsar.descriptors.molecular. HBondAcceptorCountDescriptor org.openscience.cdk.qsar.descriptors.molecular. HBondDonorCountDescriptor is_a is_a Descriptor Descriptor Verhaar scheme is_a Descriptor Table Error! No text of specified style in document..5 types used to generate atom environments H C.default N.sp2 P3 F I Hplus Cplus.sp2 Nplus P4 F- I- Hminus Cminus.sp2 Nplus.sp3 S2 Cl Misc C.sp3 Caromatic.sp2 O.sp2 S2- Cl- C.sp2 Cminus Oplus S4 Br C.sp N Ominus S Br- 18

19 Table Error! No text of specified style in document..6 The CDK library based descriptors ALogP and Molar Refractivity Largest Chain Atomic Polarizabilities Largest Pi System Amino Acids Count Aromatic Atoms Count Aromatic Bonds Count Atom count BCUT Bond Polarizabilities Bond Count Largest Aliphatic Chain Moments of Inertia Petitjean Number Petitjean Shape Indices Rotatable Bonds Count Lipinski's Rule of Five Topological Polar Surface Area Charged Partial Surface Area Vertex adjacency information magnitude Gravitational Index Hydrogen Bond Acceptors Hydrogen Bond Donors Kier and Hall kappa molecular shape indices WHIM Wiener Numbers XLogP Zagreb Index 19

20 Table Error! No text of specified style in document..7 AMBIT Descriptors Common functional groups ToxTree classification schemes 21 : pka 22, Cramer rules Molecule Size (3D), Molecular weight Electronic descriptors, calculated by OpenMopac EHOMO Extended Cramer rules Verhaar scheme Eye irritation rules Skin irritation rules ELUMO Benigni/Bossa rulebase for mutagenicity and carcinogenicity TOTAL ENERGY FINAL HEAT OF FORMATION IONIZATION POTENTIAL ELECTRONIC ENERGY CORE-CORE REPULSION MOLECULAR WEIGHT Structural rules for Michael acceptors Structure Alerts for the in vivo micronucleus assay in rodents 20

21 References 1http://guidance.echa.europa.eu/docs/guidance_document/information_requirements_r6_en. pdf?%20vers=20_08_08, accessed on June L. Xing, R.C. Glen. J. Chem. Inf. Comput. Sci. 42, 2002, p A. Bender, H.Y. Mussa, R.C. Glen, S. Reiling. J. Chem. Inf. Comput. Sci. 44, 2004, p accessed on June Daylight SMARTS theory. accessed on June Daylight Inc. accessed on June Open Babel SMARTS implementation. accessed on June The Chemical Development Library SMARTS implementation. accessed on June JOELIB accessed on June 8th smi23d - 3D Coordinate Generation, accessed on June OpenMopac accessed on June-8, A subset of descriptors, listed at accessed on July accessed on June accessed on June Bioconcentration factor (BCF) Gold Standard Database accessed on June ECETOC Aquatic Toxicity (EAT) Database. Supplement to ECETOC., Aquatic Hazard Assessment II. Technical Report No. 91, European Centre for Ecotoxicology and Toxicology of Chemicals, Brussels,

22 18 Gerberick GF, Ryan CA, Kern PS, Schlatter H, Dearman RJ, Kimber I, Patlewicz G, Basketter DA, Compilation of historical local lymph node assay data for the evaluation of skin sensitization alternatives. Dermatitis 16(4), 2005, pp ECETOC Technical Report No. 66 Skin irritation and corrosion Reference Chemicals data base, accessed on June accessed on July Adam C. Lee, Jing-yu Yu, and Gordon M. Crippen, pka Prediction of Monoprotic Small Molecules the SMARTS Way, J. Chem. Inf. Model.48(10), 2008, pp

OECD QSAR Toolbox v.4.1

OECD QSAR Toolbox v.4.1 OECD QSAR Toolbox v.4.1 Step-by-step example on how to predict the skin sensitisation potential approach of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific

More information

OECD QSAR Toolbox v.3.3

OECD QSAR Toolbox v.3.3 OECD QSAR Toolbox v.3.3 Step-by-step example on how to predict the skin sensitisation potential of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific Aims Read

More information

OECD QSAR Toolbox v.4.1. Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals

OECD QSAR Toolbox v.4.1. Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals OECD QSAR Toolbox v.4.1 Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals Background Outlook Objectives The exercise Workflow 2 Background This is a

More information

OECD QSAR Toolbox v.3.4

OECD QSAR Toolbox v.3.4 OECD QSAR Toolbox v.3.4 Step-by-step example on how to predict the skin sensitisation potential approach of a chemical by read-across based on an analogue approach Outlook Background Objectives Specific

More information

OECD QSAR Toolbox v.3.3. Predicting skin sensitisation potential of a chemical using skin sensitization data extracted from ECHA CHEM database

OECD QSAR Toolbox v.3.3. Predicting skin sensitisation potential of a chemical using skin sensitization data extracted from ECHA CHEM database OECD QSAR Toolbox v.3.3 Predicting skin sensitisation potential of a chemical using skin sensitization data extracted from ECHA CHEM database Outlook Background The exercise Workflow Save prediction 23.02.2015

More information

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.1 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.0 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists

OECD QSAR Toolbox v.3.3. Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists OECD QSAR Toolbox v.3.3 Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists Background Objectives Specific Aims Trend analysis The exercise

More information

OECD QSAR Toolbox v.3.0

OECD QSAR Toolbox v.3.0 OECD QSAR Toolbox v.3.0 Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists Background Objectives Specific Aims Trend analysis The exercise

More information

IUCLID Substance Data

IUCLID Substance Data 1 Workshop on CEFIC LRI Project EEM9.4 LRI AMBIT with IUCLID6 support and extended search capabilities IUCLID Substance Data Nikolay Kochev Ideaconsult Ltd. Sofia,Bulgaria 2 Chemical structure vs. Substance

More information

OECD QSAR Toolbox v.3.4. Example for predicting Repeated dose toxicity of 2,3-dimethylaniline

OECD QSAR Toolbox v.3.4. Example for predicting Repeated dose toxicity of 2,3-dimethylaniline OECD QSAR Toolbox v.3.4 Example for predicting Repeated dose toxicity of 2,3-dimethylaniline Outlook Background Objectives The exercise Workflow Save prediction 2 Background This is a step-by-step presentation

More information

OECD QSAR Toolbox v.3.3. Predicting acute aquatic toxicity to fish of Dodecanenitrile (CAS ) taking into account tautomerism

OECD QSAR Toolbox v.3.3. Predicting acute aquatic toxicity to fish of Dodecanenitrile (CAS ) taking into account tautomerism OECD QSAR Toolbox v.3.3 Predicting acute aquatic toxicity to fish of Dodecanenitrile (CAS 2437-25-4) taking into account tautomerism Outlook Background Objectives The exercise Workflow Save prediction

More information

KATE2017 on NET beta version https://kate2.nies.go.jp/nies/ Operating manual

KATE2017 on NET beta version  https://kate2.nies.go.jp/nies/ Operating manual KATE2017 on NET beta version http://kate.nies.go.jp https://kate2.nies.go.jp/nies/ Operating manual 2018.03.29 KATE2017 on NET was developed to predict the following ecotoxicity values: 50% effective concentration

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build a userdefined

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build a userdefined OECD QSAR Toolbox v.3.3 Step-by-step example of how to build a userdefined QSAR Background Objectives The exercise Workflow of the exercise Outlook 2 Background This is a step-by-step presentation designed

More information

Read-Across or QSARs?

Read-Across or QSARs? Replacing Experimentation Read-Across or QSARs? Which one to apply and when? Presented by: Dr. Faizan SAHIGARA Chemical Watch Expo 2017 26th April, 2017 Berlin Germany KREATiS, 23 rue du creuzat, 38080

More information

OECD QSAR Toolbox v.4.1. Step-by-step example for building QSAR model

OECD QSAR Toolbox v.4.1. Step-by-step example for building QSAR model OECD QSAR Toolbox v.4.1 Step-by-step example for building QSAR model Background Objectives The exercise Workflow of the exercise Outlook 2 Background This is a step-by-step presentation designed to take

More information

OECD QSAR Toolbox v.3.4. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding

OECD QSAR Toolbox v.3.4. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding OECD QSAR Toolbox v.3.4 Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding Outlook Background Objectives Specific Aims The exercise Workflow

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding OECD QSAR Toolbox v.3.3 Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding Outlook Background Objectives Specific Aims The exercise Workflow

More information

OECD QSAR Toolbox v.3.2. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding

OECD QSAR Toolbox v.3.2. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding OECD QSAR Toolbox v.3.2 Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding Outlook Background Objectives Specific Aims The exercise Workflow

More information

OECD QSAR Toolbox v.4.1. Tutorial of how to use Automated workflow for ecotoxicological prediction

OECD QSAR Toolbox v.4.1. Tutorial of how to use Automated workflow for ecotoxicological prediction OECD QSAR Toolbox v.4.1 Tutorial of how to use Automated workflow for ecotoxicological prediction Outlook Aim Automated workflow The exercise Report The OECD QSAR Toolbox for Grouping Chemicals into Categories

More information

QSAR in Green Chemistry

QSAR in Green Chemistry QSAR in Green Chemistry Activity Relationship QSAR is the acronym for Quantitative Structure-Activity Relationship Chemistry is based on the premise that similar chemicals will behave similarly The behavior/activity

More information

AMBIT Cheminformatics system

AMBIT Cheminformatics system 1 Workshop on CEFIC LRI Project EEM9.4 LRI AMBIT with IUCLID6 support and extended search capabilities AMBIT Cheminformatics system Nina Jeliazkova, Nikolay Kochev Ideaconsult Ltd. Sofia,Bulgaria 2 AMBIT2

More information

Searching Substances in Reaxys

Searching Substances in Reaxys Searching Substances in Reaxys Learning Objectives Understand that substances in Reaxys have different sources (e.g., Reaxys, PubChem) and can be found in Document, Reaction and Substance Records Recognize

More information

OECD QSAR Toolbox v.3.4

OECD QSAR Toolbox v.3.4 OECD QSAR Toolbox v.3.4 Predicting developmental and reproductive toxicity of Diuron (CAS 330-54-1) based on DART categorization tool and DART SAR model Outlook Background Objectives The exercise Workflow

More information

Virtual Libraries and Virtual Screening in Drug Discovery Processes using KNIME

Virtual Libraries and Virtual Screening in Drug Discovery Processes using KNIME Virtual Libraries and Virtual Screening in Drug Discovery Processes using KNIME Iván Solt Solutions for Cheminformatics Drug Discovery Strategies for known targets High-Throughput Screening (HTS) Cells

More information

OECD QSAR Toolbox v4.0 Simplifying the correct use of non-test methods

OECD QSAR Toolbox v4.0 Simplifying the correct use of non-test methods OECD QSAR Toolbox v4.0 Simplifying the correct use of non-test methods Stakeholders Day IT tool training 4 April 2017 Tomasz Sobanski Andrea Gissi Marta Sannicola Computational assessment and dissemination

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options of the structure similarity

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options of the structure similarity OECD QSAR Toolbox v.4.1 Tutorial illustrating new options of the structure similarity Outlook Background Aims PubChem features The exercise Workflow 2 Background This presentation is designed to familiarize

More information

OECD QSAR Toolbox v.3.3

OECD QSAR Toolbox v.3.3 OECD QSAR Toolbox v.3.3 Step-by-step example of how to predict aquatic toxicity to Tetrahymena pyriformis by trend analysis using category pruning capabilities Outlook Background Objectives Specific Aims

More information

BIOAUTOMATION, 2009, 13 (4),

BIOAUTOMATION, 2009, 13 (4), The Use of Computational Methods for the Assessment of Chemicals in REACH Tsakovska I. 1, Worth A. 2 1 Centre of Biomedical Engineering, Bulgarian Academy of Sciences 105 Acad. G. Bonchev Str., 1113 Sofia,

More information

Navigation in Chemical Space Towards Biological Activity. Peter Ertl Novartis Institutes for BioMedical Research Basel, Switzerland

Navigation in Chemical Space Towards Biological Activity. Peter Ertl Novartis Institutes for BioMedical Research Basel, Switzerland Navigation in Chemical Space Towards Biological Activity Peter Ertl Novartis Institutes for BioMedical Research Basel, Switzerland Data Explosion in Chemistry CAS 65 million molecules CCDC 600 000 structures

More information

OECD QSAR Toolbox v.4.1

OECD QSAR Toolbox v.4.1 OECD QSAR Toolbox v.4. Tutorial illustrating quantitative metabolic information and related functionalities Outlook Aim Background Example for: Visualizing quantitative data within Toolbox user interface

More information

Marvin. Sketching, viewing and predicting properties with Marvin - features, tips and tricks. Gyorgy Pirok. Solutions for Cheminformatics

Marvin. Sketching, viewing and predicting properties with Marvin - features, tips and tricks. Gyorgy Pirok. Solutions for Cheminformatics Marvin Sketching, viewing and predicting properties with Marvin - features, tips and tricks Gyorgy Pirok Solutions for Cheminformatics The Marvin family The Marvin toolkit provides web-enabled components

More information

What is a Registered Substance Factsheet? May 2018

What is a Registered Substance Factsheet? May 2018 What is a Registered Substance Factsheet? May 2018 2 What is a Registered Substance Factsheet? Disclaimer This publication is solely intended for information purposes and does not necessarily represent

More information

Regulatory use of (Q)SARs under REACH

Regulatory use of (Q)SARs under REACH Regulatory use of (Q)SARs under REACH Webinar on Information requirements 10 December 2009 http://echa.europa.eu 1 Using (Q)SAR models Application under REACH to fulfill information requirements Use of

More information

CEFIC LRI Project EEM9.3. IUCLID Substance Data. IUCLID substance Identity Concept Extracting data from IUCLID. Public

CEFIC LRI Project EEM9.3. IUCLID Substance Data. IUCLID substance Identity Concept Extracting data from IUCLID. Public CEFIC LRI Project EEM9.3 IUCLID Substance Data IUCLID substance Identity Concept Extracting data from IUCLID Public Joachim Schneider-Reigl CEFIC Long-range Research Initiative CEFIC LRI ProjectEEM9.3

More information

Chemical Space: Modeling Exploration & Understanding

Chemical Space: Modeling Exploration & Understanding verview Chemical Space: Modeling Exploration & Understanding Rajarshi Guha School of Informatics Indiana University 16 th August, 2006 utline verview 1 verview 2 3 CDK R utline verview 1 verview 2 3 CDK

More information

Case study: Category consistency assessment in Toolbox for a list of Cyclic unsaturated hydrocarbons with respect to repeated dose toxicity.

Case study: Category consistency assessment in Toolbox for a list of Cyclic unsaturated hydrocarbons with respect to repeated dose toxicity. Case study: Category consistency assessment in Toolbox for a list of Cyclic unsaturated hydrocarbons with respect to repeated dose toxicity. 1. Introduction The aim of this case study is to demonstrate

More information

Organometallics & InChI. August 2017

Organometallics & InChI. August 2017 Organometallics & InChI August 2017 The Cambridge Structural Database 900,000+ small-molecule crystal structures Over 60,000 datasets deposited annually Enriched and annotated by experts Structures available

More information

Screening and prioritisation of substances of concern: A regulators perspective within the JANUS project

Screening and prioritisation of substances of concern: A regulators perspective within the JANUS project Für Mensch & Umwelt LIFE COMBASE workshop on Computational Tools for the Assessment and Substitution of Biocidal Active Substances of Ecotoxicological Concern Screening and prioritisation of substances

More information

OECD QSAR Toolbox v.4.1. Implementation AOP workflow in Toolbox: Skin Sensitization

OECD QSAR Toolbox v.4.1. Implementation AOP workflow in Toolbox: Skin Sensitization OECD QSAR Toolbox v.4.1 Implementation AOP workflow in Toolbox: Skin Sensitization Outlook Background Objectives Overview of AOP scheme as implemented in the Toolbox The exercise 2 Background AOP concept

More information

University of Colorado Denver Anschutz Medical Campus Online Chemical Inventory System User s Manual

University of Colorado Denver Anschutz Medical Campus Online Chemical Inventory System User s Manual University of Colorado Denver Anschutz Medical Campus Online Chemical Inventory System User s Manual Hazardous Materials Division 303-724-0345 chemical.inventory@ucdenver.edu May, 2017 Table of Contents

More information

Data Mining in the Chemical Industry. Overview of presentation

Data Mining in the Chemical Industry. Overview of presentation Data Mining in the Chemical Industry Glenn J. Myatt, Ph.D. Partner, Myatt & Johnson, Inc. glenn.myatt@gmail.com verview of presentation verview of the chemical industry Example of the pharmaceutical industry

More information

Information Extraction from Chemical Images. Discovery Knowledge & Informatics April 24 th, Dr. Marc Zimmermann

Information Extraction from Chemical Images. Discovery Knowledge & Informatics April 24 th, Dr. Marc Zimmermann Information Extraction from Chemical Images Discovery Knowledge & Informatics April 24 th, 2006 Dr. Available Chemical Information Textbooks Reports Patents Databases Scientific journals and publications

More information

Ákos Tarcsay CHEMAXON SOLUTIONS

Ákos Tarcsay CHEMAXON SOLUTIONS Ákos Tarcsay CHEMAXON SOLUTIONS FINDING NOVEL COMPOUNDS WITH IMPROVED OVERALL PROPERTY PROFILES Two faces of one world Structure Footprint Linked Data Reactions Analytical Batch Phys-Chem Assay Project

More information

HAZARD COMMUNICATION PROGRAM

HAZARD COMMUNICATION PROGRAM HAZARD COMMUNICATION PROGRAM UNIVERSITY RISK MANAGEMENT Occupational Safety and Health Programs 19 Hagood Avenue, Suite 908 Charleston SC 29425 843-792-3604 Revised: January, 2015 TABLE OF CONTENTS Safety

More information

Fast similarity searching making the virtual real. Stephen Pickett, GSK

Fast similarity searching making the virtual real. Stephen Pickett, GSK Fast similarity searching making the virtual real Stephen Pickett, GSK Introduction Introduction to similarity searching Use cases Why is speed so crucial? Why MadFast? Some performance stats Implementation

More information

Pipeline Pilot Integration

Pipeline Pilot Integration Scientific & technical Presentation Pipeline Pilot Integration Szilárd Dóránt July 2009 The Component Collection: Quick facts Provides access to ChemAxon tools from Pipeline Pilot Free of charge Open source

More information

EUROPEAN COMMISSION. Brussels, XXX [ ](2015) XXX draft ANNEX 1 ANNEX

EUROPEAN COMMISSION. Brussels, XXX [ ](2015) XXX draft ANNEX 1 ANNEX EUROPEAN COMMISSION Brussels, XXX [ ](2015) XXX draft ANNEX 1 ANNEX EN EN ANNEX 'ANNEX VIII HARMONISED INFORMATION RELATING TO EMERGENCY HEALTH RESPONSE 1. Application PART A GENERAL REQUIREMENTS 1.1.

More information

RSC Publishing. Principles and Applications. In Silico Toxicology. Liverpool John Moores University, Liverpool, Edited by

RSC Publishing. Principles and Applications. In Silico Toxicology. Liverpool John Moores University, Liverpool, Edited by In Silico Toxicology Principles and Applications Edited by Mark T. D. Cronin and Judith C. Madden Liverpool John Moores University, Liverpool, UK RSC Publishing Contents Chapter 1 In Silico Toxicology

More information

Section II Assessing Polymers

Section II Assessing Polymers 26 Clean Production Action GreenScreen v1.4 (January 2018) Section II Assessing Polymers 13. Purpose Section II outlines the procedure to be used to assess and classify hazards of polymers. Follow the

More information

Imago: open-source toolkit for 2D chemical structure image recognition

Imago: open-source toolkit for 2D chemical structure image recognition Imago: open-source toolkit for 2D chemical structure image recognition Viktor Smolov *, Fedor Zentsev and Mikhail Rybalkin GGA Software Services LLC Abstract Different chemical databases contain molecule

More information

Reaxys Pipeline Pilot Components Installation and User Guide

Reaxys Pipeline Pilot Components Installation and User Guide 1 1 Reaxys Pipeline Pilot components for Pipeline Pilot 9.5 Reaxys Pipeline Pilot Components Installation and User Guide Version 1.0 2 Introduction The Reaxys and Reaxys Medicinal Chemistry Application

More information

How to decide whether a substance is a polymer or not and how to proceed with the relevant registration

How to decide whether a substance is a polymer or not and how to proceed with the relevant registration 1 (17) Document Title How to decide whether a and how to proceed with the Contents 1. Introduction... 2 2. Substance identification polymer or not... 4 2.1. Introduction manufacture of a (potential) polymer...

More information

INTRODUCTION. REACH Compliance. Importers / Retailers. Delhi,

INTRODUCTION. REACH Compliance. Importers / Retailers. Delhi, INTRODUCTION REACH Compliance for Importers / Retailers Delhi, 6.11.08 1 INTRODUCTION Registration, Evaluation, Authorisation ti and Restriction ti of Chemicals In force since 01.06.07 850 Pages of EU

More information

POC via CHEMnetBASE for Identifying Unknowns

POC via CHEMnetBASE for Identifying Unknowns Table of Contents A red arrow is used to identify where buttons and functions are located in CHEMnetBASE. Figure Description Page Entering the Properties of Organic Compounds (POC) Database 1 CHEMnetBASE

More information

DECEMBER 2014 REAXYS R201 ADVANCED STRUCTURE SEARCHING

DECEMBER 2014 REAXYS R201 ADVANCED STRUCTURE SEARCHING DECEMBER 2014 REAXYS R201 ADVANCED STRUCTURE SEARCHING 1 NOTES ON REAXYS R201 THIS PRESENTATION COMMENTS AND SUMMARY Outlines how to: a. Perform Substructure and Similarity searches b. Use the functions

More information

The Schrödinger KNIME extensions

The Schrödinger KNIME extensions The Schrödinger KNIME extensions Computational Chemistry and Cheminformatics in a workflow environment Jean-Christophe Mozziconacci Volker Eyrich Topics What are the Schrödinger extensions? Workflow application

More information

Rapid Application Development using InforSense Open Workflow and Daylight Technologies Deliver Discovery Value

Rapid Application Development using InforSense Open Workflow and Daylight Technologies Deliver Discovery Value Rapid Application Development using InforSense Open Workflow and Daylight Technologies Deliver Discovery Value Anthony Arvanites Daylight User Group Meeting March 10, 2005 Outline 1. Company Introduction

More information

The new regulation REACH INTRODUCTION. Pedro Guerra

The new regulation REACH INTRODUCTION. Pedro Guerra The new regulation REACH INTRODUCTION Pedro Guerra 1 INTRODUCTION Regulation (CE) 1906/2006 (REACH) regulates the Registration, Evaluation, Authorization and Restriction of chemical substances and preparations.

More information

A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics

A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics Chemical Databases Online A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics Combined Chemical Dictionary Dictionary of Natural Products Dictionary of Organic Dictionary of Drugs

More information

POC via CHEMnetBASE for Identifying Unknowns

POC via CHEMnetBASE for Identifying Unknowns Table of Contents A red arrow was used to identify where buttons and functions are located in CHEMnetBASE. Figure Description Page Entering the Properties of Organic Compounds (POC) Database 1 Swain Home

More information

Good Read-Across Practice 1: State of the Art of Read-Across for Toxicity Prediction. Mark Cronin Liverpool John Moores University England

Good Read-Across Practice 1: State of the Art of Read-Across for Toxicity Prediction. Mark Cronin Liverpool John Moores University England Good Read-Across Practice 1: State of the Art of Read-Across for Toxicity Prediction Mark Cronin Liverpool John Moores University England Acknowledgement What I am Going to Say Background and context State

More information

QMRF# Title. number and title in JRC QSAR Model Data base 2.0 (new) number and title in JRC QSAR Model Data base 1.0

QMRF# Title. number and title in JRC QSAR Model Data base 2.0 (new) number and title in JRC QSAR Model Data base 1.0 Q15-410-0003 ACD/Percepta model for genotoxicity (Ames test) Q31-47-42-424 ACD/Percepta model for genotoxicity (Ames test) Q15-42-0005 ACD/Percepta model for mouse acute oral toxicity Q32-48-43-426 ACD/Percepta

More information

CDK & Mass Spectrometry

CDK & Mass Spectrometry CDK & Mass Spectrometry October 3, 2011 1/18 Stephan Beisken October 3, 2011 EBI is an outstation of the European Molecular Biology Laboratory. Chemistry Development Kit (CDK) An Open Source Java TM Library

More information

Large scale classification of chemical reactions from patent data

Large scale classification of chemical reactions from patent data Large scale classification of chemical reactions from patent data Gregory Landrum NIBR Informatics, Basel Novartis Institutes for BioMedical Research 10th International Conference on Chemical Structures/

More information

Condensed Graph of Reaction: considering a chemical reaction as one single pseudo molecule

Condensed Graph of Reaction: considering a chemical reaction as one single pseudo molecule Condensed Graph of Reaction: considering a chemical reaction as one single pseudo molecule Frank Hoonakker 1,3, Nicolas Lachiche 2, Alexandre Varnek 3, and Alain Wagner 3,4 1 Chemoinformatics laboratory,

More information

Next Generation Computational Chemistry Tools to Predict Toxicity of CWAs

Next Generation Computational Chemistry Tools to Predict Toxicity of CWAs Next Generation Computational Chemistry Tools to Predict Toxicity of CWAs William (Bill) Welsh welshwj@umdnj.edu Prospective Funding by DTRA/JSTO-CBD CBIS Conference 1 A State-wide, Regional and National

More information

Large Scale Evaluation of Chemical Structure Recognition 4 th Text Mining Symposium in Life Sciences October 10, Dr.

Large Scale Evaluation of Chemical Structure Recognition 4 th Text Mining Symposium in Life Sciences October 10, Dr. Large Scale Evaluation of Chemical Structure Recognition 4 th Text Mining Symposium in Life Sciences October 10, 2006 Dr. Overview Brief introduction Chemical Structure Recognition (chemocr) Manual conversion

More information

Arizona Division of Occupational Safety and Health Administration. 800 W. Washington Street, Phoenix, AZ Consultation:

Arizona Division of Occupational Safety and Health Administration. 800 W. Washington Street, Phoenix, AZ Consultation: ADOSH Arizona Division of Occupational Safety and Health Administration 800 W. Washington Street, Phoenix, AZ 85007 Consultation: 602-542-1769 GLOBALLY HARMONIZED SYSTEM for HAZARD COMMUNICATION Steven

More information

GHS Classification CONCEPT OF GHS

GHS Classification CONCEPT OF GHS CONCEPT OF GHS Chemicals, through the different steps from their production to their handling, transport and use, are a real danger for human health and the environment. People of any ages, from children

More information

Integrative Metabolic Fate Prediction and Retrosynthetic Analysis the Semantic Way

Integrative Metabolic Fate Prediction and Retrosynthetic Analysis the Semantic Way Integrative Metabolic Fate Prediction and Retrosynthetic Analysis the Semantic Way Leonid L. Chepelev 1 and Michel Dumontier 1,2,3 1 Department of Biology, Carleton University, 1125 Colonel by Drive, Ottawa,

More information

Global Harmonization and Hazard Communication

Global Harmonization and Hazard Communication Global Harmonization and Hazard Communication HAZARD COMMUNICATION Major changes to the Hazard Communication Standard Hazard classification: Chemical manufacturers and importers are required to determine

More information

Applying the Semantic Web to Computational Chemistry

Applying the Semantic Web to Computational Chemistry Applying the Semantic Web to Computational Chemistry Neil S. Ostlund, Mirek Sopek Chemical Semantics Inc., Gainesville, Florida, USA {ostlund, sopek}@chemicalsemantics.com Abstract. Chemical Semantics

More information

Quantitative Structure Activity Relationships: An overview

Quantitative Structure Activity Relationships: An overview Quantitative Structure Activity Relationships: An overview Prachi Pradeep Oak Ridge Institute for Science and Education Research Participant National Center for Computational Toxicology U.S. Environmental

More information

EUROPEAN COMMISSION. Brussels, XXX D046374/04 [ ](2016) XXX draft ANNEX 1 ANNEX

EUROPEAN COMMISSION. Brussels, XXX D046374/04 [ ](2016) XXX draft ANNEX 1 ANNEX EUROPEAN COMMISSION Brussels, XXX D046374/04 [ ](2016) XXX draft ANNEX 1 ANNEX EN EN ANNEX EN 1 EN ANNEX 'ANNEX VIII HARMONISED INFORMATION RELATING TO EMERGENCY HEALTH RESPONSE AND PREVENTATIVE MEASURES

More information

MultiCASE CASE Ultra model for severe skin irritation in vivo

MultiCASE CASE Ultra model for severe skin irritation in vivo MultiCASE CASE Ultra model for severe skin irritation in vivo 1. QSAR identifier 1.1 QSAR identifier (title) MultiCASE CASE Ultra model for severe skin irritation in vivo, Danish QSAR Group at DTU Food.

More information

Polymers (Toxic [6.7]) Group Standard HSR002646

Polymers (Toxic [6.7]) Group Standard HSR002646 Polymers (Toxic [6.7]) Group Standard 2017 - HSR002646 GROUP STANDARD UNDER THE HAZARDOUS SUBSTANCES AND NEW ORGANISMS ACT 1996 Polymers (Toxic [6.7]) Group Standard 2017 Pursuant to clause 5 of Schedule

More information

Introduction to Spark

Introduction to Spark 1 As you become familiar or continue to explore the Cresset technology and software applications, we encourage you to look through the user manual. This is accessible from the Help menu. However, don t

More information

The Guidelines for Hazard Identification of New Chemical Substances

The Guidelines for Hazard Identification of New Chemical Substances The Guidelines for Hazard Identification of New Chemical Substances Disclaimer 26 September 2011, The Ministry of Environmental Protection (MEP) of China published two drafts for the Guidelines for Risk

More information

Manual Railway Industry Substance List. Version: March 2011

Manual Railway Industry Substance List. Version: March 2011 Manual Railway Industry Substance List Version: March 2011 Content 1. Scope...3 2. Railway Industry Substance List...4 2.1. Substance List search function...4 2.1.1 Download Substance List...4 2.1.2 Manual...5

More information

Open PHACTS Explorer: Compound by Name

Open PHACTS Explorer: Compound by Name Open PHACTS Explorer: Compound by Name This document is a tutorial for obtaining compound information in Open PHACTS Explorer (explorer.openphacts.org). Features: One-click access to integrated compound

More information

REACH Pre-registration & Registration - Questions and Answers

REACH Pre-registration & Registration - Questions and Answers MEMO/08/240 Brussels, 11 th April 2008 REACH Pre-registration & Registration - Questions and Answers The EU's new chemicals legislation REACH (Registration, Evaluation, Authorisation and Restriction of

More information

Reaxys The Highlights

Reaxys The Highlights Reaxys The Highlights What is Reaxys? A brand new workflow solution for research chemists and scientists from related disciplines An extensive repository of reaction and substance property data A resource

More information

QSAR Modeling of ErbB1 Inhibitors Using Genetic Algorithm-Based Regression

QSAR Modeling of ErbB1 Inhibitors Using Genetic Algorithm-Based Regression APPLICATION NOTE QSAR Modeling of ErbB1 Inhibitors Using Genetic Algorithm-Based Regression GAINING EFFICIENCY IN QUANTITATIVE STRUCTURE ACTIVITY RELATIONSHIPS ErbB1 kinase is the cell-surface receptor

More information

Exercises for Windows

Exercises for Windows Exercises for Windows CAChe User Interface for Windows Select tool Application window Document window (workspace) Style bar Tool palette Select entire molecule Select Similar Group Select Atom tool Rotate

More information

KNIME-based scoring functions in Muse 3.0. KNIME User Group Meeting 2013 Fabian Bös

KNIME-based scoring functions in Muse 3.0. KNIME User Group Meeting 2013 Fabian Bös KIME-based scoring functions in Muse 3.0 KIME User Group Meeting 2013 Fabian Bös Certara Mission: End-to-End Model-Based Drug Development Certara was formed by acquiring and integrating Tripos, Pharsight,

More information

Basic Techniques in Structure and Substructure

Basic Techniques in Structure and Substructure Truncating Molecules Basic Techniques in Structure and Substructure Searching for Information Professionals Judith Currano Head, Chemistry Library University of Pennsylvania currano@pobox.upenn.edu Acknowledgements

More information

State-of-the-science in Metrology & Metrics for Nanomaterials Regulation

State-of-the-science in Metrology & Metrics for Nanomaterials Regulation Topic 3: Metrology and dose metrics for hazard and exposure assessment throughout the life cycle State-of-the-science in Metrology & Metrics for Nanomaterials Regulation Dr Steve Hankin Head of Section,

More information

Metabolite Identification and Characterization by Mining Mass Spectrometry Data with SAS and Python

Metabolite Identification and Characterization by Mining Mass Spectrometry Data with SAS and Python PharmaSUG 2018 - Paper AD34 Metabolite Identification and Characterization by Mining Mass Spectrometry Data with SAS and Python Kristen Cardinal, Colorado Springs, Colorado, United States Hao Sun, Sun

More information

LIFE Project Acronym and Number ANTARES LIFE08 ENV/IT/ Deliverable Report. Deliverable Name and Number

LIFE Project Acronym and Number ANTARES LIFE08 ENV/IT/ Deliverable Report. Deliverable Name and Number LIFE Project Acronym and Number ANTARES LIFE08 ENV/IT/000435 Deliverable Report Deliverable Name and Number Deliverable 2 Report on the identified criteria for non-testing methods, and their scores Deliverable

More information

DP Project Development Pvt. Ltd.

DP Project Development Pvt. Ltd. Dear Sir/Madam, Greetings!!! Thanks for contacting DP Project Development for your training requirement. DP Project Development is leading professional training provider in GIS technologies and GIS application

More information

From BASIS DD to Barista Application in Five Easy Steps

From BASIS DD to Barista Application in Five Easy Steps Y The steps are: From BASIS DD to Barista Application in Five Easy Steps By Jim Douglas our current BASIS Data Dictionary is perfect raw material for your first Barista-brewed application. Barista facilitates

More information

Drug Informatics for Chemical Genomics...

Drug Informatics for Chemical Genomics... Drug Informatics for Chemical Genomics... An Overview First Annual ChemGen IGERT Retreat Sept 2005 Drug Informatics for Chemical Genomics... p. Topics ChemGen Informatics The ChemMine Project Library Comparison

More information

WHAT S WRONG WITH THIS PICTURE?

WHAT S WRONG WITH THIS PICTURE? 1606 WHAT S WRONG WITH THIS PICTURE? Hazard Communication & GHS Leader s Guide Aurora Pictures Program Synopsis WHAT S WRONG WITH THIS PICTURE? Hazard Communication & GHS This video holds the viewer's

More information

mylab: Chemical Safety Module Last Updated: January 19, 2018

mylab: Chemical Safety Module Last Updated: January 19, 2018 : Chemical Safety Module Contents Introduction... 1 Getting started... 1 Login... 1 Receiving Items from MMP Order... 3 Inventory... 4 Show me Chemicals where... 4 Items Received on... 5 All Items... 5

More information

The shortest path to chemistry data and literature

The shortest path to chemistry data and literature R&D SOLUTIONS Reaxys Fact Sheet The shortest path to chemistry data and literature Designed to support the full range of chemistry research, including pharmaceutical development, environmental health &

More information

Chemoinformatics and information management. Peter Willett, University of Sheffield, UK

Chemoinformatics and information management. Peter Willett, University of Sheffield, UK Chemoinformatics and information management Peter Willett, University of Sheffield, UK verview What is chemoinformatics and why is it necessary Managing structural information Typical facilities in chemoinformatics

More information

ISIS/Draw "Quick Start"

ISIS/Draw Quick Start ISIS/Draw "Quick Start" Click to print, or click Drawing Molecules * Basic Strategy 5.1 * Drawing Structures with Template tools and template pages 5.2 * Drawing bonds and chains 5.3 * Drawing atoms 5.4

More information

OF ALL THE CHEMISTRY RELATED SOFTWARE

OF ALL THE CHEMISTRY RELATED SOFTWARE ChemBioOffice Ultra 2010 - A Great Benefit for Academia by Josh Kocher, Illinois State University OF ALL THE CHEMISTRY RELATED SOFTWARE that I have used in both an industrial and academic setting, ChemBioOffice

More information