forked from pysam-developers/pysam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
631 lines (527 loc) · 22.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
#! /usr/bin/python
'''pysam - a python module for reading, manipulating and writing
genomic data sets.
pysam is a lightweight wrapper of the htslib C-API and provides
facilities to read and write SAM/BAM/VCF/BCF/BED/GFF/GTF/FASTA/FASTQ
files as well as access to the command line functionality of the
samtools and bcftools packages. The module supports compression and
random access through indexing.
This module provides a low-level wrapper around the htslib C-API as
using cython and a high-level API for convenient access to the data
within standard genomic file formats.
See:
http://www.htslib.org
https://github.com/pysam-developers/pysam
http://pysam.readthedocs.org/en/stable
'''
import collections
import glob
import os
import platform
import re
import subprocess
import sys
import sysconfig
from contextlib import contextmanager
from distutils import log
from setuptools import setup, Command
from distutils.command.build import build
from setuptools.command.sdist import sdist
from distutils.errors import LinkError
from cy_build import CyExtension as Extension, cy_build_ext as build_ext
try:
import cython # noqa
HAVE_CYTHON = True
except ImportError:
HAVE_CYTHON = False
IS_PYTHON3 = sys.version_info.major >= 3
IS_DARWIN = platform.system() == 'Darwin'
@contextmanager
def changedir(path):
save_dir = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(save_dir)
def run_configure(option):
sys.stdout.flush()
try:
retcode = subprocess.call(
" ".join(("./configure", option)),
shell=True)
if retcode != 0:
return False
else:
return True
except OSError as e:
return False
def run_make(targets):
sys.stdout.flush()
subprocess.check_call([os.environ.get("MAKE", "make")] + targets)
def run_make_print_config():
stdout = subprocess.check_output(["make", "-s", "print-config"])
if IS_PYTHON3:
stdout = stdout.decode("ascii")
make_print_config = {}
for line in stdout.splitlines():
if "=" in line:
row = line.split("=")
if len(row) == 2:
make_print_config.update(
{row[0].strip(): row[1].strip()})
return make_print_config
def run_nm_defined_symbols(objfile):
stdout = subprocess.check_output(["nm", "-g", "-P", objfile])
if IS_PYTHON3:
stdout = stdout.decode("ascii")
symbols = set()
for line in stdout.splitlines():
(sym, symtype) = line.split()[:2]
if symtype not in "UFNWw":
if IS_DARWIN:
# On macOS, all symbols have a leading underscore
symbols.add(sym.lstrip('_'))
else:
# Ignore symbols such as _edata (present in all shared objects)
if sym[0] not in "_$.@": symbols.add(sym)
return symbols
# This function emulates the way distutils combines settings from sysconfig,
# environment variables, and the extension being built. It returns a dictionary
# representing the usual set of variables, suitable for writing to a generated
# file or for running configure (provided the returned LIBS is ignored).
def build_config_dict(ext):
def env(var):
return [os.environ[var]] if var in os.environ else []
def sc(var):
value = sysconfig.get_config_var(var)
return [value] if value is not None else []
def optionise(option, valuelist):
def quote(s): return "'"+s+"'" if " " in s else s
return list(quote(option+v) for v in valuelist)
def kvtuples(pairlist):
def appendoptvalue(t): return t[0] if t[1] is None else t[0]+"="+t[1]
return map(appendoptvalue, pairlist)
# For CC, select the first of these that is set
cc = (env('CC') + sc('CC') + ['gcc'])[0]
# distutils ignores sysconfig for CPPFLAGS
cppflags = " ".join(env('CPPFLAGS') + optionise('-I', ext.include_dirs) +
optionise('-D', kvtuples(ext.define_macros)) +
optionise('-U', ext.undef_macros))
cflags = " ".join(sc('CFLAGS') + env('CFLAGS') + sc('CCSHARED') +
ext.extra_compile_args)
# distutils actually includes $CPPFLAGS here too, but that's weird and
# unnecessary for us as we know the output LDFLAGS will be used correctly
ldflags = " ".join(sc('LDFLAGS') + env('LDFLAGS') + env('CFLAGS') +
optionise('-L', ext.library_dirs) +
ext.extra_link_args)
# ext.libraries is computed (incorporating $LIBS etc) during configure
libs = " ".join(optionise('-l', ext.libraries))
return { 'CC': cc, 'CPPFLAGS': cppflags, 'CFLAGS': cflags,
'LDFLAGS': ldflags, 'LIBS': libs }
def write_configvars_header(filename, ext, prefix):
config = build_config_dict(ext)
if prefix != 'HTS':
config['HTSDIR'] = '(unused)'
config['CURSES_LIB'] = '(unused)'
log.info("creating %s for '%s' extension", filename, ext.name)
with open(filename, "w") as outf:
for var, value in config.items():
outf.write('#define {}_{} "{}"\n'.format(prefix, var, value))
@contextmanager
def set_compiler_envvars():
tmp_vars = []
for var in ['CC', 'CFLAGS', 'LDFLAGS']:
if var in os.environ:
print("# pysam: (env) {}={}".format(var, os.environ[var]))
elif var in sysconfig.get_config_vars():
value = sysconfig.get_config_var(var)
if var == 'CFLAGS' and 'CCSHARED' in sysconfig.get_config_vars():
value += ' ' + sysconfig.get_config_var('CCSHARED')
print("# pysam: (sysconfig) {}={}".format(var, value))
os.environ[var] = value
tmp_vars += [var]
try:
yield
finally:
for var in tmp_vars:
del os.environ[var]
def configure_library(library_dir, env_options=None, options=[]):
configure_script = os.path.join(library_dir, "configure")
on_rtd = os.environ.get("READTHEDOCS") == "True"
# RTD has no bzip2 development libraries installed:
if on_rtd:
env_options = "--disable-bz2"
if not os.path.exists(configure_script):
raise ValueError(
"configure script {} does not exist".format(configure_script))
with changedir(library_dir), set_compiler_envvars():
if env_options is not None:
if run_configure(env_options):
return env_options
for option in options:
if run_configure(option):
return option
return None
def get_pysam_version():
sys.path.insert(0, "pysam")
import version
return version.__version__
# Override sdist command to ensure Cythonized *.c files are included.
class cythonize_sdist(sdist):
# Remove when setuptools (as installed on GH runners) has these options
if not any(opt[0] == 'owner=' for opt in sdist.user_options):
sdist.user_options.append(('owner=', 'u', 'Specify owner inside tar'))
if not any(opt[0] == 'group=' for opt in sdist.user_options):
sdist.user_options.append(('group=', 'g', 'Specify group inside tar'))
def run(self):
from Cython.Build import cythonize
cythonize(self.distribution.ext_modules)
sdist.run(self)
# Override build command to add extra build steps.
class extra_build(build):
def check_ext_symbol_conflicts(self):
"""Checks for symbols defined in multiple extension modules,
which can lead to crashes due to incorrect functions being invoked.
Avoid by adding an appropriate #define to import/pysam.h or in
unusual cases adding another rewrite rule to devtools/import.py.
"""
build_ext_obj = self.distribution.get_command_obj('build_ext')
symbols = dict()
for ext in self.distribution.ext_modules:
for sym in run_nm_defined_symbols(build_ext_obj.get_ext_fullpath(ext.name)):
symbols.setdefault(sym, []).append(ext.name.lstrip('pysam.'))
errors = 0
for (sym, objs) in symbols.items():
if (len(objs) > 1):
log.error("conflicting symbol (%s): %s", " ".join(objs), sym)
errors += 1
if errors > 0: raise LinkError("symbols defined in multiple extensions")
def run(self):
build.run(self)
try:
if HTSLIB_MODE != 'separate':
self.check_ext_symbol_conflicts()
except OSError as e:
log.warn("skipping symbol collision check (invoking nm failed: %s)", e)
except subprocess.CalledProcessError:
log.warn("skipping symbol collision check (invoking nm failed)")
class clean_ext(Command):
description = "clean up Cython temporary files"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
objs = glob.glob(os.path.join("pysam", "libc*.c"))
if objs:
log.info("removing 'pysam/libc*.c' (%s Cython objects)", len(objs))
for obj in objs:
os.remove(obj)
headers = (glob.glob(os.path.join("htslib", "*config*.h")) +
glob.glob(os.path.join("samtools", "*config*.h")) +
glob.glob(os.path.join("bcftools", "*config*.h")))
if headers:
log.info("removing '*/*config*.h' (%s generated headers)", len(headers))
for header in headers:
os.remove(header)
objects = (glob.glob(os.path.join("htslib", "*.[oa]")) +
glob.glob(os.path.join("htslib", "cram", "*.o")) +
glob.glob(os.path.join("htslib", "htscodecs", "htscodecs", "*.o")))
if objects:
log.info("removing 'htslib/**/*.o' and libhts.a (%s objects)", len(objects))
for obj in objects:
os.remove(obj)
# How to link against HTSLIB
# shared: build shared chtslib from builtin htslib code.
# external: use shared libhts.so compiled outside of
# pysam
# separate: use included htslib and include in each extension
# module. No dependencies between modules and works with
# setup.py install, but wasteful in terms of memory and
# compilation time. Fallback if shared module compilation
# fails.
HTSLIB_MODE = os.environ.get("HTSLIB_MODE", "shared")
HTSLIB_LIBRARY_DIR = os.environ.get("HTSLIB_LIBRARY_DIR", None)
HTSLIB_INCLUDE_DIR = os.environ.get("HTSLIB_INCLUDE_DIR", None)
HTSLIB_CONFIGURE_OPTIONS = os.environ.get("HTSLIB_CONFIGURE_OPTIONS", None)
HTSLIB_SOURCE = None
package_list = ['pysam',
'pysam.include',
'pysam.include.samtools',
'pysam.include.bcftools']
package_dirs = {'pysam': 'pysam',
'pysam.include.samtools': 'samtools',
'pysam.include.bcftools': 'bcftools'}
# list of config files that will be automatically generated should
# they not already exist or be created by configure scripts in the
# subpackages.
config_headers = ["samtools/config.h",
"bcftools/config.h"]
# If cython is available, the pysam will be built using cython from
# the .pyx files. If no cython is available, the C-files included in the
# distribution will be used.
if HAVE_CYTHON:
print("# pysam: cython is available - using cythonize if necessary")
source_pattern = "pysam/libc%s.pyx"
else:
print("# pysam: no cython available - using pre-compiled C")
source_pattern = "pysam/libc%s.c"
# Exit if there are no pre-compiled files and no cython available
fn = source_pattern % "htslib"
if not os.path.exists(fn):
raise ValueError(
"no cython installed, but can not find {}."
"Make sure that cython is installed when building "
"from the repository"
.format(fn))
print("# pysam: htslib mode is {}".format(HTSLIB_MODE))
print("# pysam: HTSLIB_CONFIGURE_OPTIONS={}".format(
HTSLIB_CONFIGURE_OPTIONS))
htslib_configure_options = None
if HTSLIB_MODE in ['shared', 'separate']:
package_list += ['pysam.include.htslib',
'pysam.include.htslib.htslib']
package_dirs.update({'pysam.include.htslib':'htslib'})
htslib_configure_options = configure_library(
"htslib",
HTSLIB_CONFIGURE_OPTIONS,
["--enable-libcurl",
"--disable-libcurl"])
HTSLIB_SOURCE = "builtin"
print("# pysam: htslib configure options: {}".format(
str(htslib_configure_options)))
config_headers += ["htslib/config.h"]
if htslib_configure_options is None:
# create empty config.h file
with open("htslib/config.h", "w") as outf:
outf.write(
"/* empty config.h created by pysam */\n")
outf.write(
"/* conservative compilation options */\n")
with changedir("htslib"):
htslib_make_options = run_make_print_config()
for key, value in htslib_make_options.items():
print("# pysam: htslib_config {}={}".format(key, value))
external_htslib_libraries = ['z']
if "LIBS" in htslib_make_options:
external_htslib_libraries.extend(
[re.sub("^-l", "", x) for x in htslib_make_options["LIBS"].split(" ") if x.strip()])
if HTSLIB_LIBRARY_DIR:
# linking against a shared, externally installed htslib version,
# no sources or built libhts.a required for htslib
htslib_objects = []
separate_htslib_objects = []
chtslib_sources = []
htslib_library_dirs = [HTSLIB_LIBRARY_DIR]
htslib_include_dirs = [HTSLIB_INCLUDE_DIR]
external_htslib_libraries = ['z', 'hts']
elif HTSLIB_MODE == 'separate':
# add to each pysam component a separately compiled
# htslib
htslib_objects = ['htslib/libhts.a']
separate_htslib_objects = ['htslib/libhts.a']
htslib_library_dirs = []
htslib_include_dirs = ['htslib']
elif HTSLIB_MODE == 'shared':
# link each pysam component against the same
# htslib built from sources included in the pysam
# package.
# Link with the object files rather than the final htslib/libhts.a, to ensure that
# all object files are pulled into the link, even those not used by htslib itself.
htslib_objects = [os.path.join("htslib", x)
for x in htslib_make_options["LIBHTS_OBJS"].split(" ")]
separate_htslib_objects = []
htslib_library_dirs = ["."] # when using setup.py develop?
htslib_include_dirs = ['htslib']
else:
raise ValueError("unknown HTSLIB value '%s'" % HTSLIB_MODE)
# build config.py
with open(os.path.join("pysam", "config.py"), "w") as outf:
outf.write('HTSLIB = "{}"\n'.format(HTSLIB_SOURCE))
config_values = collections.defaultdict(int)
if HTSLIB_SOURCE == "builtin":
with open(os.path.join("htslib", "config.h")) as inf:
for line in inf:
if line.startswith("#define"):
key, value = re.match(
"#define (\S+)\s+(\S+)", line).groups()
config_values[key] = value
for key in ["ENABLE_GCS",
"ENABLE_PLUGINS",
"ENABLE_S3",
"HAVE_COMMONCRYPTO",
"HAVE_HMAC",
"HAVE_LIBBZ2",
"HAVE_LIBCURL",
"HAVE_LIBDEFLATE",
"HAVE_LIBLZMA",
"HAVE_MMAP"]:
outf.write("{} = {}\n".format(key, config_values[key]))
print("# pysam: config_option: {}={}".format(key, config_values[key]))
# create empty config.h files if they have not been created automatically
# or created by the user:
for fn in config_headers:
if not os.path.exists(fn):
with open(fn, "w") as outf:
outf.write(
"/* empty config.h created by pysam */\n")
outf.write(
"/* conservative compilation options */\n")
#######################################################
# Windows compatibility - untested
if platform.system() == 'Windows':
include_os = ['win32']
os_c_files = ['win32/getopt.c']
extra_compile_args = []
else:
include_os = []
os_c_files = []
# for python 3.4, see for example
# http://stackoverflow.com/questions/25587039/
# error-compiling-rpy2-on-python3-4-due-to-werror-
# declaration-after-statement
extra_compile_args = [
"-Wno-unused",
"-Wno-strict-prototypes",
"-Wno-sign-compare",
"-Wno-error=declaration-after-statement"]
define_macros = []
suffix = sysconfig.get_config_var('EXT_SUFFIX')
if not suffix:
suffix = sysconfig.get_config_var('SO')
internal_htslib_libraries = [
os.path.splitext("chtslib{}".format(suffix))[0]]
internal_samtools_libraries = [
os.path.splitext("csamtools{}".format(suffix))[0],
os.path.splitext("cbcftools{}".format(suffix))[0],
]
internal_pysamutil_libraries = [
os.path.splitext("cutils{}".format(suffix))[0]]
libraries_for_pysam_module = external_htslib_libraries + internal_htslib_libraries + internal_pysamutil_libraries
# Order of modules matters in order to make sure that dependencies are resolved.
# The structures of dependencies is as follows:
# libchtslib: htslib utility functions and htslib itself if builtin is set.
# libcsamtools: samtools code (builtin)
# libcbcftools: bcftools code (builtin)
# libcutils: General utility functions, depends on all of the above
# libcXXX (pysam module): depends on libchtslib and libcutils
# The list below uses the union of include_dirs and library_dirs for
# reasons of simplicity.
def prebuild_libchtslib(ext, force):
if HTSLIB_MODE not in ['shared', 'separate']: return
write_configvars_header("htslib/config_vars.h", ext, "HTS")
if force or not os.path.exists("htslib/libhts.a"):
log.info("building 'libhts.a'")
with changedir("htslib"):
# TODO Eventually by running configure here, we can set these
# extra flags for configure instead of hacking on ALL_CPPFLAGS.
args = " ".join(ext.extra_compile_args)
run_make(["ALL_CPPFLAGS=-I. " + args + " $(CPPFLAGS)", "lib-static"])
else:
log.warn("skipping 'libhts.a' (already built)")
def prebuild_libcsamtools(ext, force):
write_configvars_header("samtools/samtools_config_vars.h", ext, "SAMTOOLS")
modules = [
dict(name="pysam.libchtslib",
prebuild_func=prebuild_libchtslib,
sources=[source_pattern % "htslib", "pysam/htslib_util.c"] + os_c_files,
extra_objects=htslib_objects,
libraries=external_htslib_libraries),
dict(name="pysam.libcsamtools",
prebuild_func=prebuild_libcsamtools,
sources=[source_pattern % "samtools"] + glob.glob(os.path.join("samtools", "*.pysam.c")) +
[os.path.join("samtools", "lz4", "lz4.c")] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=external_htslib_libraries + internal_htslib_libraries),
dict(name="pysam.libcbcftools",
sources=[source_pattern % "bcftools"] + glob.glob(os.path.join("bcftools", "*.pysam.c")) + os_c_files,
extra_objects=separate_htslib_objects,
libraries=external_htslib_libraries + internal_htslib_libraries),
dict(name="pysam.libcutils",
sources=[source_pattern % "utils", "pysam/pysam_util.c"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=external_htslib_libraries + internal_htslib_libraries + internal_samtools_libraries),
dict(name="pysam.libcalignmentfile",
sources=[source_pattern % "alignmentfile"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcsamfile",
sources=[source_pattern % "samfile"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcalignedsegment",
sources=[source_pattern % "alignedsegment"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libctabix",
sources=[source_pattern % "tabix"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcfaidx",
sources=[source_pattern % "faidx"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcbcf",
sources=[source_pattern % "bcf"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcbgzf",
sources=[source_pattern % "bgzf"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libctabixproxies",
sources=[source_pattern % "tabixproxies"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
dict(name="pysam.libcvcf",
sources=[source_pattern % "vcf"] + os_c_files,
extra_objects=separate_htslib_objects,
libraries=libraries_for_pysam_module),
]
common_options = dict(
language="c",
extra_compile_args=extra_compile_args,
define_macros=define_macros,
# for out-of-tree compilation, use absolute paths
library_dirs=[os.path.abspath(x) for x in ["pysam"] + htslib_library_dirs],
include_dirs=[os.path.abspath(x) for x in ["pysam"] + htslib_include_dirs + \
["samtools", "samtools/lz4", "bcftools", "."] + include_os])
# add common options (in python >3.5, could use n = {**a, **b}
for module in modules:
module.update(**common_options)
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
metadata = {
'name': "pysam",
'version': get_pysam_version(),
'description': "pysam",
'long_description': __doc__,
'author': "Andreas Heger",
'author_email': "andreas.heger@gmail.com",
'license': "MIT",
'platforms': ["POSIX", "UNIX", "MacOS"],
'classifiers': [_f for _f in classifiers.split("\n") if _f],
'url': "https://github.com/pysam-developers/pysam",
'packages': package_list,
'requires': ['cython (>=0.29.12)'],
'ext_modules': [Extension(**opts) for opts in modules],
'cmdclass': {'build': extra_build, 'build_ext': build_ext, 'clean_ext': clean_ext, 'sdist': cythonize_sdist},
'package_dir': package_dirs,
'package_data': {'': ['*.pxd', '*.h', 'py.typed', '*.pyi'], },
# do not pack in order to permit linking to csamtools.so
'zip_safe': False,
}
if __name__ == '__main__':
dist = setup(**metadata)