RDKitMinimalLib.add_hsFunction
add_hs(mol::Mol, details::Union{Dict{String,Any},Nothing}=nothing)

Adds Hydrogens to the molecule.

Examples

mol = get_mol("CC(=O)Oc1ccccc1C(=O)O")
add_hs(mol)
source
RDKitMinimalLib.remove_all_hsFunction
remove_all_hs(mol::Mol, details::Union{Dict{String,Any},Nothing}=nothing)

Removes all Hydrogens from the molecule.

Examples

mol = get_mol("CC(=O)Oc1ccccc1C(=O)O")
remove_all_hs(mol)
source