-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made module, made class names more consistent snake-to-camel
- Loading branch information
Showing
11 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from .blastdb_aliastool import BlastdbAliastool | ||
from .blastdbcmd import Blastdbcmd | ||
from .blastn import Blastn | ||
from .hmmalign import Hmmalign | ||
from .makeblastdb import Makeblastdb | ||
from .megatree_loader import MegatreeLoader | ||
from .megatree_pruner import MegatreePruner | ||
from .raxml_ng import RaxmlNg | ||
|
||
__all__ = [ | ||
'BlastdbAliastool', | ||
'Blastdbcmd', | ||
'Blastn', | ||
'Hmmalign', | ||
'Makeblastdb', | ||
'MegatreeLoader', | ||
'MegatreePruner', | ||
'RaxmlNg', | ||
] |
2 changes: 1 addition & 1 deletion
2
bactria/blastdb_aliastool.py → bactria/tools/blastdb_aliastool.py
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.