-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 771 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 771 Bytes
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
from setuptools import setup, find_packages
import sargasso
setup(
name="sargasso",
version=sargasso.__version__,
url='https://github.com/statbio/Sargasso',
license='MIT License',
author='Owen Dando',
author_email='owen.dando@ed.ac.uk',
packages=find_packages(),
install_requires=[
'docopt',
'pysam',
'schema',
'pytest',
],
scripts=[
'bin/build_star_index',
'bin/build_bowtie2_index',
'bin/collate_raw_reads',
'bin/filter_control',
'bin/filter_reads',
'bin/filter_sample_reads',
'bin/map_reads_rnaseq',
'bin/map_reads_dnaseq',
'bin/sargasso_parameter_test',
'bin/sort_reads',
'bin/species_separator',
]
)