Skip to content

Commit

Permalink
Merge pull request #35 from TRON-Bioinformatics/develop
Browse files Browse the repository at this point in the history
fix CLI for cooccurrence
  • Loading branch information
priesgo authored Jun 4, 2022
2 parents d337730 + ee79fd5 commit f915544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion covigator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "v0.7.0"
VERSION = "v0.7.1"
ANALYSIS_PIPELINE_VERSION = "v0.9.3"

MISSENSE_VARIANT = "missense_variant"
Expand Down
2 changes: 1 addition & 1 deletion covigator/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,5 @@ def cooccurrence():
database = Database(initialize=True, config=Configuration())
loader = CooccurrenceMatrixLoader(session=database.get_database_session())
logger.info("Starting precomputation...")
loader.load(data_source=args.data_source, maximum_length=args.maximum_length)
loader.load(data_source=args.data_source, maximum_length=int(args.maximum_length))
logger.info("Done precomputing")

0 comments on commit f915544

Please sign in to comment.