Commit 67e76e38 authored by nd-02110114's avatar nd-02110114
Browse files

📝 update docs

parent c9f0da15
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -62,8 +62,8 @@ class BindingPocketFeaturizer(Featurizer):
  this class's implementation will only work for proteins and not for
  other macromolecules

  Notes
  -----
  Note
  ----
  This class requires mdtraj to be installed.
  """

+2 −2
Original line number Diff line number Diff line
@@ -43,8 +43,8 @@ class CGCNNFeaturizer(MaterialStructureFeaturizer):
  >>> print(type(feature))
  <class 'deepchem.feat.graph_data.GraphData'>

  Notes
  -----
  Note
  ----
  This class requires Pymatgen to be installed.
  """

+3 −3
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ class ElementPropertyFingerprint(MaterialCompositionFeaturizer):
  matminer. It may be useful when only crystal compositions are available
  (and not 3D coordinates).

  See references [1]_ [2]_ [3]_ [4]_ for more details.
  See references [1]_, [2]_, [3]_, [4]_ for more details.

  References
  ----------
@@ -37,8 +37,8 @@ class ElementPropertyFingerprint(MaterialCompositionFeaturizer):
  >>> featurizer = ElementPropertyFingerprint()
  >>> features = featurizer.featurize([comp])

  Notes
  -----
  Note
  ----
  This class requires matminer and Pymatgen to be installed.
  `NaN` feature values are automatically converted to 0 by this featurizer.
  """
+2 −2
Original line number Diff line number Diff line
@@ -39,8 +39,8 @@ class SineCoulombMatrix(MaterialStructureFeaturizer):
  >>> featurizer = SineCoulombMatrix(max_atoms=2)
  >>> features = featurizer.featurize([structure])

  Notes
  -----
  Note
  ----
  This class requires matminer and Pymatgen to be installed.
  """

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ from deepchem.utils.typing import RDKitMol
class AtomicCoordinates(MolecularFeaturizer):
  """Calculate atomic coordinates.

  Notes
  Note
  ----
  This class requires RDKit to be installed.
  """
Loading