-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
256 additions
and
216 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
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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,30 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from os import pardir, path | ||
from bycon import * | ||
|
||
loc_path = path.dirname( path.abspath(__file__) ) | ||
lib_path = path.join(loc_path , pardir, "importers", "lib") | ||
sys.path.append( lib_path ) | ||
from importer_helpers import * | ||
|
||
""" | ||
./housekeepers/recordsMoverWDS.py -d progenetix --output cellz -i ./imports/1kdeltest.tsv --testMode false | ||
""" | ||
|
||
################################################################################ | ||
################################################################################ | ||
################################################################################ | ||
|
||
def main(): | ||
initialize_bycon_service() | ||
BI = ByconautImporter() | ||
BI.move_individuals_and_downstream() | ||
|
||
|
||
################################################################################ | ||
################################################################################ | ||
################################################################################ | ||
|
||
if __name__ == '__main__': | ||
main() |
Oops, something went wrong.