Compare commits
6 Commits
v3.0.0-bet
...
v3.0.0b19
Author | SHA1 | Date | |
---|---|---|---|
b5a29ac413 | |||
efd2b9d338 | |||
ca6e3e7aad | |||
76ed8e18e5 | |||
1d17f28aec | |||
fa834e4b8b |
@ -6,7 +6,7 @@ recursive-include doc/sphinx/source *.txt *.rst *.py
|
|||||||
recursive-include doc/sphinx/sphinxext *.py
|
recursive-include doc/sphinx/sphinxext *.py
|
||||||
include doc/sphinx/Makefile
|
include doc/sphinx/Makefile
|
||||||
include doc/sphinx/Doxyfile
|
include doc/sphinx/Doxyfile
|
||||||
include README.txt
|
include README.md
|
||||||
include requirements.txt
|
include requirements.txt
|
||||||
include scripts/obi
|
include scripts/obi
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ def run(config):
|
|||||||
dcols[tag] = (Column.new_column(view, tag, dict_dict[tag][1], \
|
dcols[tag] = (Column.new_column(view, tag, dict_dict[tag][1], \
|
||||||
nb_elements_per_line=len(dict_dict[tag][0]), \
|
nb_elements_per_line=len(dict_dict[tag][0]), \
|
||||||
elements_names=list(dict_dict[tag][0])), \
|
elements_names=list(dict_dict[tag][0])), \
|
||||||
value_obitype)
|
dict_dict[tag][1])
|
||||||
|
|
||||||
|
|
||||||
# Reinitialize the input
|
# Reinitialize the input
|
||||||
|
@ -171,6 +171,8 @@ def genbankIterator_dir(dir_path,
|
|||||||
read = 0
|
read = 0
|
||||||
read_files = 0
|
read_files = 0
|
||||||
files = [filename for filename in glob.glob(os.path.join(path, b'*.gbff*'))]
|
files = [filename for filename in glob.glob(os.path.join(path, b'*.gbff*'))]
|
||||||
|
files.extend([filename for filename in glob.glob(os.path.join(path, b'*.seq*'))]) # new genbank extension
|
||||||
|
files = list(set(files))
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if read==only:
|
if read==only:
|
||||||
return
|
return
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
major = 3
|
major = 3
|
||||||
minor = 0
|
minor = 0
|
||||||
serial= '0-beta17'
|
serial= '0b19'
|
||||||
|
|
||||||
version ="%d.%02d.%s" % (major,minor,serial)
|
version ="%d.%d.%s" % (major,minor,serial)
|
||||||
|
5
requirements.txt
Executable file
5
requirements.txt
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
--extra-index-url https://pypi.python.org/simple/
|
||||||
|
Cython>=0.24
|
||||||
|
Sphinx>=1.2.0
|
||||||
|
ipython>=3.0.0
|
||||||
|
breathe>=4.0.0
|
3
setup.py
3
setup.py
@ -5,7 +5,8 @@ import re
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from distutils import log
|
from distutils import log
|
||||||
from distutils.core import setup
|
#from distutils.core import setup
|
||||||
|
from setuptools import setup # to work with pip
|
||||||
|
|
||||||
from distutils.core import Extension
|
from distutils.core import Extension
|
||||||
from distutils.sysconfig import get_python_lib
|
from distutils.sysconfig import get_python_lib
|
||||||
|
Reference in New Issue
Block a user