-
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.
- Loading branch information
Showing
40 changed files
with
1,959 additions
and
646 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
Binary file not shown.
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
__email__ = ("[email protected]", "[email protected]") | ||
__license__ = "BSD" | ||
__status__ = "Development" | ||
__version__ = "0.2.3.r287" | ||
__version__ = "0.2.4.r288" | ||
__epilog__ = f""" | ||
\b | ||
Version: {__version__} | \n | ||
|
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env python | ||
# -*- coding:utf-8 -*- | ||
|
||
""" | ||
recluster the contigs on existing clusters | ||
""" | ||
|
||
import argparse | ||
import logging | ||
import os | ||
import os.path as op | ||
import sys | ||
|
||
import pandas as pd | ||
import numpy as np | ||
|
||
from ..core import AlleleTable, PruneTable, ClusterTable | ||
|
||
|
||
class Recluster: | ||
""" | ||
Developping... | ||
""" | ||
def __init__(self, clustertable, contacts, countre, prunetable, min_length=50000): | ||
self.clustertable = clustertable | ||
self.contacts = contacts | ||
self.countre = countre | ||
self.prunetable = prunetable | ||
|
||
self.min_length = min_length | ||
|
||
|
||
|
||
|
Oops, something went wrong.