-
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.
Merge pull request #105 from CCBR/use-tools
Use shared helper functions from ccbr_tools
- Loading branch information
Showing
11 changed files
with
63 additions
and
532 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 |
---|---|---|
|
@@ -36,28 +36,20 @@ | |
""" | ||
|
||
# Python standard library | ||
from __future__ import print_function | ||
import sys, os, subprocess, re, json, textwrap | ||
|
||
|
||
# 3rd party imports from pypi | ||
import argparse # potential python3 3rd party package, added in python/3.5 | ||
from ccbr_tools.pipeline.util import err, exists, fatal, permissions, require | ||
from ccbr_tools.pipeline.cache import check_cache | ||
|
||
# Local imports | ||
from .run import init, setup, bind, dryrun, runner, run | ||
from .shells import bash | ||
from .options import genome_options | ||
from .util import ( | ||
err, | ||
exists, | ||
fatal, | ||
permissions, | ||
check_cache, | ||
require, | ||
get_version, | ||
get_genomes_list, | ||
) | ||
from .gui import launch_gui | ||
from .util import xavier_base, get_version | ||
|
||
__version__ = get_version() | ||
__email__ = "[email protected]" | ||
|
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
Oops, something went wrong.