1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/atoms.R
\name{get.connected.atoms}
\alias{get.connected.atoms}
\title{get.connected.atoms}
\usage{
get.connected.atoms(atom, mol)
}
\arguments{
\item{atom}{The atom object}
\item{mol}{The `IAtomContainer` object containing the atom}
}
\value{
A `list` containing `IAtom` objects, representing the atoms directly
connected to the specified atom
}
\description{
Get atoms connected to the specified atom
}
\details{
Returns a `list`` of atoms that are connected to the specified atom.
}
\author{
Rajarshi Guha (\email{rajarshi.guha@gmail.com})
}
|