forked from VUmcCGP/wisecondor
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* restructure project
- Loading branch information
Showing
50 changed files
with
108 additions
and
69 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 21.9b0 | ||
hooks: | ||
- id: black | ||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.9.2 | ||
hooks: | ||
- id: flake8 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
recursive-include wisecondorX *.R | ||
recursive-include wisecondorx *.R |
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.black] | ||
line-length = 79 | ||
target_version = ['py36','py37','py38','py39'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
/( | ||
\.git | ||
| \.hg | ||
| \.mypy_cache | ||
| \.tox | ||
| \.venv | ||
| _build | ||
| buck-out | ||
| build | ||
| dist | ||
)/ | ||
''' |
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,63 @@ | ||
[metadata] | ||
name = wisecondorx | ||
version = 1.2.6dev | ||
description = description="WisecondorX -- an evolved WISECONDOR" | ||
long_description = file: README.md | ||
author = "Matthias De Smet, Lennart Raman", | ||
author_email = "[email protected]", | ||
license = "by-nc-sa" | ||
license_file = LICENSE.md | ||
platforms = unix, linux, osx, win32 | ||
keywords= | ||
bioinformatics | ||
biology | ||
sequencing | ||
NGS | ||
next generation sequencing | ||
CNV | ||
SWGS | ||
Shallow Whole Genome Sequencing | ||
classifiers = | ||
Environment :: Console | ||
Intended Audience :: Science/Research | ||
Natural Language :: English | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: POSIX | ||
Operating System :: Unix | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
|
||
|
||
[options] | ||
packages = wisecondorx | ||
package_dir = | ||
=src | ||
include_package_data=True | ||
python_requires= >=3.6 | ||
install_requires = | ||
scipy | ||
scikit-learn | ||
pysam | ||
numpy | ||
zip_safe = False | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
wisecondorx = wisecondorx.main:main | ||
WisecondorX = wisecondorx.main:main | ||
wisecondorX = wisecondorx.main:main | ||
|
||
|
||
[options.extras_require] | ||
testing = | ||
flake8 | ||
black | ||
pre-commit | ||
|
||
[flake8] | ||
ignore = E266, E203, E501, C901, W503 | ||
max-line-length = 79 | ||
max-complexity = 18 |
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 |
---|---|---|
@@ -1,55 +1,5 @@ | ||
#! /usr/bin/env python | ||
from setuptools import setup, find_packages | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
|
||
version = "1.2.4" | ||
dl_version = "master" if "dev" in version else "{}".format(version) | ||
|
||
setup( | ||
name="WisecondorX", | ||
version=version, | ||
author="Matthias De Smet, Lennart Raman", | ||
author_email="[email protected]", | ||
description="WisecondorX -- an evolved WISECONDOR", | ||
long_description=__doc__, | ||
keywords=[ | ||
"bioinformatics", | ||
"biology", | ||
"sequencing", | ||
"NGS", | ||
"next generation sequencing", | ||
"CNV", | ||
"SWGS", | ||
"Shallow Whole Genome Sequencing", | ||
], | ||
download_url="https://github.com/CenterForMedicalGeneticsGhent/WisecondorX/archive/v{}.tar.gz".format( | ||
dl_version | ||
), | ||
license="Attribution-NonCommercial-ShareAlike CC BY-NC-SA", | ||
packages=find_packages("."), | ||
python_requires=">=2.7", | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=[ | ||
'futures;python_version<"3"', | ||
"scipy", | ||
"scikit-learn", | ||
"pysam", | ||
"numpy", | ||
], | ||
entry_points={"console_scripts": ["WisecondorX = wisecondorX.main:main"]}, | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
], | ||
) | ||
if __name__ == "__main__": | ||
setup() |
File renamed without changes.
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
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.
2 changes: 1 addition & 1 deletion
2
wisecondorX/predict_control.py → src/wisecondorx/predict_control.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