-
Notifications
You must be signed in to change notification settings - Fork 5
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
15 changed files
with
65 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include README.md | ||
recursive-include SplitFusion/ *.py | ||
recursive-include SplitFusion/Reference_feat/ *.txt | ||
|
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,12 @@ | ||
Metadata-Version: 1.0 | ||
Name: SplitFusion | ||
Version: 0.0 | ||
Summary: UNKNOWN | ||
Home-page: UNKNOWN | ||
Author: UNKNOWN | ||
Author-email: UNKNOWN | ||
License: Creative Commons Attribution-Noncommercial-Share Alike license | ||
Description-Content-Type: UNKNOWN | ||
Description: SplitFusion | ||
|
||
Platform: UNKNOWN |
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,15 @@ | ||
MANIFEST.in | ||
README.md | ||
setup.py | ||
SplitFusion/2018_05_21_SplitFusion.py | ||
SplitFusion/Fusion_annotation.py | ||
SplitFusion/Group_split.py | ||
SplitFusion/Multiple_alignment.py | ||
SplitFusion/__init__.py | ||
SplitFusion.egg-info/PKG-INFO | ||
SplitFusion.egg-info/SOURCES.txt | ||
SplitFusion.egg-info/dependency_links.txt | ||
SplitFusion.egg-info/requires.txt | ||
SplitFusion.egg-info/top_level.txt | ||
SplitFusion/Reference_feat/NCBIRef_seq_HG19_fest.txt | ||
SplitFusion/Reference_feat/NCBI_refSeqGRC38_features.txt |
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 @@ | ||
|
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,3 @@ | ||
subprocess32==3.2.7 | ||
HTSeq==0.9.1 | ||
statsmodels==0.8.0 |
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 @@ | ||
SplitFusion |
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.
File renamed without changes.
File renamed without changes.
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
##packaging command python setup.py sdist | ||
|
||
import sys | ||
import os.path | ||
from setuptools import setup, Extension, find_packages | ||
|
||
|
||
setup( | ||
name='SplitFusion', | ||
version='0.0', | ||
packages=find_packages(), | ||
license='Creative Commons Attribution-Noncommercial-Share Alike license', | ||
long_description=open('README.md').read(), | ||
package_dir = {'SplitFusion': 'SplitFusion/'}, | ||
package_data={'ReferenceGenomes': ['Reference_feat/*.txt']}, | ||
py_modules = ['SplitFusion.Multiple_alignment', 'SplitFusion.Fusion_annotation', 'SplitFusion.Group_split'], | ||
install_requires=['subprocess32==3.2.7' , | ||
'HTSeq==0.9.1', | ||
'statsmodels==0.8.0'], | ||
include_package_data=True | ||
|
||
) | ||
|
||
|