Skip to content

Commit

Permalink
[cleanup] change logging levels to debug to declutter output
Browse files Browse the repository at this point in the history
  • Loading branch information
kierandidi committed Apr 23, 2024
1 parent a0ae40b commit 4a3b725
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions graphein/protein/features/sequence/embeddings.py
Expand Up @@ -31,7 +31,7 @@
pip_install=True,
conda_channel="pytorch",
)
log.warning(message)
log.debug(message)

try:
import biovec
Expand All @@ -42,7 +42,7 @@
pip_install=True,
extras=True,
)
log.warning(message)
log.debug(message)


@lru_cache()
Expand Down
2 changes: 1 addition & 1 deletion graphein/protein/meshes.py
Expand Up @@ -27,7 +27,7 @@
conda_channel="pytorch3d",
pip_install=True,
)
log.warning(message)
log.debug(message)


def check_for_pymol_installation():
Expand Down
2 changes: 1 addition & 1 deletion graphein/protein/tensor/representation.py
Expand Up @@ -24,7 +24,7 @@
conda_channel="pytorch",
pip_install=True,
)
log.warning(message)
log.debug(message)


def get_full_atom_coords(
Expand Down
2 changes: 1 addition & 1 deletion graphein/protein/tensor/sequence.py
Expand Up @@ -31,7 +31,7 @@
conda_channel="pytorch",
pip_install=True,
)
log.warning(message)
log.debug(message)


def get_sequence(
Expand Down
3 changes: 2 additions & 1 deletion graphein/protein/visualisation.py
Expand Up @@ -33,7 +33,7 @@
package="pytorch3d",
conda_channel="pytorch3d",
)
log.warning(message)
log.debug(message)

try:
from mpl_chord_diagram import chord_diagram
Expand All @@ -44,6 +44,7 @@
pip_install=True,
extras=True,
)
log.debug(message)


def plot_pointcloud(mesh: Meshes, title: str = "") -> Axes3D:
Expand Down

0 comments on commit 4a3b725

Please sign in to comment.