Skip to content

Commit afb9ee2

Browse files
authored
Merge pull request #112 from deeptools/fix111
2 parents a0ef35a + 7dbec77 commit afb9ee2

11 files changed

+96
-19
lines changed

.environmentLinux.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: foo
2+
channels:
3+
- conda-forge
4+
- bioconda
5+
- default
6+
dependencies:
7+
- gcc_linux-64
8+
- curl
9+
- zlib
10+
- python 3.8
11+
- pip
12+
- numpy
13+
- nose

.github/workflows/build.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on: pull_request
2+
jobs:
3+
testLinux:
4+
name: TestLinux
5+
runs-on: "ubuntu-latest"
6+
defaults:
7+
run:
8+
shell: bash -l {0}
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: conda-incubator/setup-miniconda@v2
12+
with:
13+
activate-environment: foo
14+
environment-file: .environmentLinux.yaml
15+
python-version: 3.8
16+
auto-activate-base: false
17+
- run: |
18+
pip install .
19+
nosetests -sv

.github/workflows/pypi.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: pypi
2+
on: [push]
3+
jobs:
4+
pypi:
5+
name: upload to pypi
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v1
9+
- name: Setup conda
10+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
11+
run: |
12+
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -o miniconda.sh
13+
bash miniconda.sh -b -p $HOME/miniconda
14+
export PATH="$HOME/miniconda/bin:$PATH"
15+
hash -r
16+
conda config --set always_yes yes --set changeps1 no
17+
- name: create env
18+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
19+
run: |
20+
export PATH=$HOME/miniconda/bin:$PATH
21+
conda create -n foo -q --yes -c conda-forge -c bioconda python=3.7 twine numpy libcurl curl zlib
22+
- name: sdist
23+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
24+
run: |
25+
export PATH=$HOME/miniconda/bin:$PATH
26+
source activate foo
27+
rm -f dist/*
28+
python setup.py sdist
29+
- name: upload
30+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
31+
env:
32+
TWINE_USERNAME: "__token__"
33+
TWINE_PASSWORD: ${{ secrets.pypi_password }}
34+
run: |
35+
export PATH=$HOME/miniconda/bin:$PATH
36+
source activate foo
37+
twine upload dist/*

.travis.yml

-14
This file was deleted.

libBigWig/bigWig.h

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef LIBBIGWIG_H
2+
#define LIBBIGWIG_H
3+
14
#include "bigWigIO.h"
25
#include "bwValues.h"
36
#include <inttypes.h>
@@ -53,15 +56,18 @@ extern "C" {
5356
/*!
5457
* The library version number
5558
*/
56-
#define LIBBIGWIG_VERSION 0.4.4
59+
#define LIBBIGWIG_VERSION 0.4.6
5760

5861
/*!
5962
* If 1, then this library was compiled with remote file support.
6063
*/
6164
#ifdef NOCURL
6265
#define LIBBIGWIG_CURL 0
66+
#ifndef CURLTYPE_DEFINED
67+
#define CURLTYPE_DEFINED
6368
typedef int CURLcode;
6469
typedef void CURL;
70+
#endif
6571
#else
6672
#define LIBBIGWIG_CURL 1
6773
#endif
@@ -596,3 +602,5 @@ int bwAppendIntervalSpanSteps(bigWigFile_t *fp, float *values, uint32_t n);
596602
#ifdef __cplusplus
597603
}
598604
#endif
605+
606+
#endif // LIBBIGWIG_H

libBigWig/bigWigIO.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
#ifndef LIBBIGWIG_IO_H
2+
#define LIBBIGWIG_IO_H
3+
14
#ifndef NOCURL
25
#include <curl/curl.h>
36
#else
47
#include <stdio.h>
8+
#ifndef CURLTYPE_DEFINED
9+
#define CURLTYPE_DEFINED
510
typedef int CURLcode;
611
typedef void CURL;
12+
#endif
713
#define CURLE_OK 0
814
#define CURLE_FAILED_INIT 1
915
#endif
@@ -100,3 +106,5 @@ URL_t *urlOpen(char *fname, CURLcode (*callBack)(CURL*), const char* mode);
100106
* @warning URL will no longer point to a valid location in memory!
101107
*/
102108
void urlClose(URL_t *URL);
109+
110+
#endif // LIBBIGWIG_IO_H

libBigWig/bwRead.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ bigWigFile_t *bwOpen(char *fname, CURLcode (*callBack) (CURL*), const char *mode
371371
}
372372

373373
//Read in the index
374-
if(bwg->hdr->nBasesCovered) {
374+
if(bwg->hdr->indexOffset) {
375375
bwg->idx = bwReadIndex(bwg, 0);
376376
if(!bwg->idx) {
377377
fprintf(stderr, "[bwOpen] bwg->idx is NULL bwg->hdr->dataOffset 0x%"PRIx64"!\n", bwg->hdr->dataOffset);

libBigWig/bwValues.h

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef LIBBIGWIG_VALUES_H
2+
#define LIBBIGWIG_VALUES_H
3+
14
#include <inttypes.h>
25
/*! \file bwValues.h
36
*
@@ -70,3 +73,5 @@ typedef struct {
7073
uint8_t type; /**<The block type: 1, bedGraph; 2, variable step; 3, fixed step.*/
7174
uint16_t nItems; /**<The number of values in a given block.*/
7275
} bwDataHeader_t;
76+
77+
#endif // LIBBIGWIG_VALUES_H

pyBigWig.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ char *getNumpyStr(PyArrayObject *obj, Py_ssize_t i) {
197197

198198
//Return 1 if there are any entries at all
199199
int hasEntries(bigWigFile_t *bw) {
200-
if(bw->hdr->nBasesCovered > 0) return 1;
200+
if(bw->hdr->indexOffset != 0) return 1; // No index, no entries pyBigWig issue #111
201+
//if(bw->hdr->nBasesCovered > 0) return 1; // Sometimes headers are broken
201202
return 0;
202203
}
203204

pyBigWig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <structmember.h>
33
#include "bigWig.h"
44

5-
#define pyBigWigVersion "0.3.17"
5+
#define pyBigWigVersion "0.3.18"
66

77
typedef struct {
88
PyObject_HEAD

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
include_dirs = include_dirs)
6363

6464
setup(name = 'pyBigWig',
65-
version = '0.3.17',
65+
version = '0.3.18',
6666
description = 'A package for accessing bigWig files using libBigWig',
6767
author = "Devon P. Ryan",
6868
author_email = "[email protected]",

0 commit comments

Comments
 (0)