forked from davidbenjamin/permutect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 1 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
from setuptools import setup, find_packages
setup(
name="Mutect 3",
version="0.1",
author="David Benjamin",
author_email="davidben@broadinstitute.org",
description="A new way to filter somatic variant calls",
license="Apache license version 2.0",
packages=find_packages(),
entry_points={
'console_scripts': ['train_model=permutect.tools.train_model:main',
'train_base_model=permutect.tools.train_base_model:main',
'filter_variants=permutect.tools.filter_variants:main',
'preprocess_dataset=permutect.tools.preprocess_dataset:main',
'edit_dataset=permutect.tools.edit_dataset:main',
'prune_dataset=permutect.tools.prune_dataset:main',
'evaluate_model=permutect.tools.evaluate_model:main',
'compare_to_mutect2=permutect.tools.compare_to_mutect2:main'
]
}
)