-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support --scaled; add saving capability; properly handle saving with errors, SIGINT * add stat_type to DistanceCalc message * Add pluggable Saturation, start on normalized distances * Completely remove c++ layer Event handling, migrate cdbg runner to curio async processor * Add streaming solid k-mer filter * Fix sourmash test * tweak cdbg metric output, have unitig fragmentation output n kmers per bin * misc
- Loading branch information
1 parent
a6361b8
commit d38cc58
Showing
47 changed files
with
1,372 additions
and
1,615 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,16 @@ | |
# Author : Camille Scott <[email protected]> | ||
# Date : 14.10.2019 | ||
|
||
from goetia.cli import GoetiaRunner | ||
from goetia.cdbg import cDBGRunner | ||
from goetia.cli.runner import GoetiaRunner | ||
from goetia.cli.cdbg_stream import cDBGRunner | ||
from goetia.cli.solid_filter import SolidFilterRunner | ||
from goetia.signatures import SourmashRunner | ||
|
||
|
||
def main(): | ||
runner = GoetiaRunner() | ||
runner.add_command('cdbg', cDBGRunner) | ||
runner.add_command('sourmash', SourmashRunner) | ||
runner.add_command('solid-filter', SolidFilterRunner) | ||
|
||
return runner.run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# (c) Camille Scott, 2019 | ||
# File : alphabets.py | ||
# License: MIT | ||
# Author : Camille Scott <[email protected]> | ||
# Date : 27.02.2020 | ||
|
||
from goetia import libgoetia | ||
|
||
DNA_SIMPLE = libgoetia.DNA_SIMPLE | ||
DNAN_SIMPLE = libgoetia.DNAN_SIMPLE | ||
IUPAC_NUCL = libgoetia.IUPAC_NUCL | ||
ANY = libgoetia.ANY | ||
ANY = libgoetia.ANY |
Oops, something went wrong.