Skip to content

Commit

Permalink
Comment on verbository changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Sep 15, 2020
1 parent 08cde1a commit b504bc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/datatypes/binary.py
Expand Up @@ -33,6 +33,8 @@
from . import data, dataproviders

log = logging.getLogger(__name__)
# pysam 0.16.0.1 emits logs with the words error, this can confuse the stdout/stderr checkers.
# Can be be removed once https://github.com/pysam-developers/pysam/issues/939 is resolved.
pysam.set_verbosity(0)

# Currently these supported binary data types must be manually set on upload
Expand Down
2 changes: 2 additions & 0 deletions lib/galaxy/visualization/data_providers/genome.py
Expand Up @@ -27,6 +27,8 @@
# Utility functions.
#

# pysam 0.16.0.1 emits logs with the words error, this can confuse the stdout/stderr checkers.
# Can be be removed once https://github.com/pysam-developers/pysam/issues/939 is resolved.
pysam.set_verbosity(0)
PYSAM_INDEX_SYMLINK_NECESSARY = packaging.version.parse(pysam.__version__) <= packaging.version.parse('0.13.0')

Expand Down

0 comments on commit b504bc6

Please sign in to comment.