or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/rdkit@2024.9.x
tile.json

tessl/pypi-rdkit

tessl install tessl/pypi-rdkit@2024.9.0

Platform wheels for RDKit - a comprehensive cheminformatics and machine-learning library with Python bindings

Agent Success

Agent success rate when using this tile

89%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.01x

Baseline

Agent success rate without this tile

88%

task.mdevals/scenario-3/

Molecular Hydrogen Manager

A utility for managing hydrogen representation in molecular structures for chemical data processing pipelines.

Capabilities

Explicit Hydrogen Addition

  • Given a molecular structure without explicit hydrogens, the tool adds all explicit hydrogens to the molecule. @test
  • The function correctly handles aromatic compounds when adding hydrogens. @test

Hydrogen Removal

  • Given a molecular structure with explicit hydrogens, the tool removes all explicit hydrogens from the molecule. @test
  • The function preserves chiral centers when removing hydrogens. @test

Implementation

@generates

API

def add_explicit_hydrogens(mol):
    """
    Adds explicit hydrogens to a molecule object.

    Args:
        mol: A molecule object

    Returns:
        A new molecule object with explicit hydrogens added
    """
    pass

def remove_explicit_hydrogens(mol):
    """
    Removes explicit hydrogens from a molecule object.

    Args:
        mol: A molecule object with explicit hydrogens

    Returns:
        A new molecule object with explicit hydrogens removed
    """
    pass

Dependencies { .dependencies }

rdkit { .dependency }

Provides cheminformatics support for molecular manipulation.