-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
executable file
·60 lines (56 loc) · 2.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
# mypy: ignore-errors
import os
import setuptools_scm # noqa
from setuptools import find_packages, setup
with open("README.md") as fn:
long_description = fn.read()
# Read the version from the _version.py file
version_file = os.path.join("somaticseq", "_version.py")
with open(version_file) as f:
exec(f.read()) # This will define __version__
setup(
name="somaticseq",
description="SomaticSeq: An ensemble approach to accurately detect somatic mutations using SomaticSeq",
version=__version__, # noqa
long_description=long_description,
long_description_content_type="text/markdown",
author="Li Tai Fang",
author_email="ltfang@gmail.com",
url="https://github.com/bioinform/somaticseq",
packages=find_packages(),
package_data={"": ["*.R"]},
python_requires=">=3.11.0",
setup_requires=["setuptools>=42", "setuptools_scm"],
install_requires=[ # overridden by pyproject.toml
"pysam",
"numpy",
"scipy",
"pandas",
"xgboost>=1.4",
"pydantic>=2.0.0,<3.0",
],
scripts=[
"somaticseq/somaticseq_parallel.py",
"somaticseq/run_somaticseq.py",
"somaticseq/single_sample_vcf2tsv.py",
"somaticseq/somatic_vcf2tsv.py",
"somaticseq/somatic_xgboost.py",
"somaticseq/somatic_tsv2vcf.py",
"somaticseq/genomic_file_parsers/concat.py",
"somaticseq/utilities/linguistic_sequence_complexity.py",
"somaticseq/utilities/lociCounterWithLabels.py",
"somaticseq/utilities/paired_end_bam2fastq.py",
"somaticseq/utilities/remove_callers_from_somaticseq_tsv.py",
"somaticseq/utilities/split_bed_into_equal_regions.py",
"somaticseq/utilities/tally_variants_from_multiple_vcfs.py",
"somaticseq/utilities/variant_annotation.py",
"somaticseq/utilities/vcfsorter.pl",
"somaticseq/utilities/dockered_pipelines/makeAlignmentScripts.py",
"somaticseq/utilities/dockered_pipelines/makeSomaticScripts.py",
"somaticseq/utilities/dockered_pipelines/run_workflows.py",
"somaticseq/vcf_modifier/splitVcf.py",
"r_scripts/ada_model_builder_ntChange.R",
"r_scripts/ada_model_predictor.R",
],
)