Skip to content

Commit 65e49b5

Browse files
committed
upgrade to 1.1.10
1 parent 833d160 commit 65e49b5

15 files changed

+962996
-150029
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1+
## 1.1.10 (2016-7-14)
2+
3+
Bugfixes:
4+
5+
* case-sensitivity issue for fusion fix step
6+
7+
Improvements:
8+
9+
* use smaller test data
10+
111
## 1.1.9 (2016-6-7)
212

313
Improvements:
414

515
* offer more deployment methods (PyPI, bioconda, Docker and Galaxy Tool). Thanks
616
@bgruening and @anatskiy for their helps!
717

8-
918
## 1.1.8 (2016-4-21)
1019

1120
Improvements:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
CIRCexplorer is a combined strategy to identify junction reads from back spliced exons and intron lariats.
99

10-
Version: 1.1.9
10+
Version: 1.1.10
1111

12-
Last Modified: 2016-6-7
12+
Last Modified: 2016-7-14
1313

1414
Authors: Xiao-Ou Zhang ([email protected]), Li Yang ([email protected])
1515

@@ -133,7 +133,7 @@ python setup.py install
133133
##Usage
134134

135135
```bash
136-
CIRCexplorer.py 1.1.9 -- circular RNA analysis toolkits.
136+
CIRCexplorer.py 1.1.10 -- circular RNA analysis toolkits.
137137

138138
Usage: CIRCexplorer.py [options]
139139

circ/CIRCexplorer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
"""
5-
CIRCexplorer.py 1.1.9 -- circular RNA analysis toolkit.
5+
CIRCexplorer.py 1.1.10 -- circular RNA analysis toolkit.
66
77
Usage: CIRCexplorer.py [options]
88
@@ -22,7 +22,7 @@
2222
"""
2323

2424
__author__ = 'Xiao-Ou Zhang ([email protected])'
25-
__version__ = '1.1.9'
25+
__version__ = '1.1.10'
2626

2727
from docopt import docopt
2828
import sys

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
setup(name='CIRCexplorer',
7-
version='1.1.9',
7+
version='1.1.10',
88
description='A combined strategy to identify circular RNAs (circRNAs and ciRNAs)',
99
author='Xiao-Ou Zhang',
1010
author_email='[email protected]',

test/__init__.py

-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,12 @@
33
'''
44

55
import os
6-
from utils import download_fa
76

87

98
def setup_package():
109
print('#test.__init__: Start testing')
1110
os.chdir('test')
12-
download_fa('data')
1311

1412

1513
def teardown_package():
1614
print('#test.__init__: End testing')
17-
os.remove('data/chromFa.tar.gz')
18-
os.remove('data/hg19.fa')
19-
os.remove('data/hg19.fa.fai')

test/data/annotated_junction.txt

-39,780
Large diffs are not rendered by default.

test/data/chr21.fa

+962,599
Large diffs are not rendered by default.

test/data/chr21.fa.fai

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chr21 48129895 7 50 51

test/data/circular_RNA.txt

+24-7,379
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)