Skip to content

Commit c1d3795

Browse files
author
rodrigo
committed
installation tweaks
1 parent 96b24ec commit c1d3795

File tree

5 files changed

+22
-15
lines changed

5 files changed

+22
-15
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,17 @@ If you are using this tool, **make sure to cite and visit the CAZy website**
1414
*cazy-parser* is a tool that extract information from [CAZy](http://www.cazy.org/) in a more usable and readable format. Firstly, a script reads the HTML structure and creates a mirror of the database as a tab delimited file. Secondly, information is extracted from the database according to user inputted parameters and presented to the user as a set of accession codes.
1515

1616
## Installation
17-
`pip install cazy-parser`
17+
`$ pip install cazy-parser`
1818

19+
or
20+
21+
Download latest source from [this link](https://pypi.python.org/pypi/cazy-parser)
22+
23+
```
24+
$ tar -zxvf cazy-parser-x.x.x.tar.gz
25+
$ cd cazy-parser-x.x.x
26+
$ python setup.py install
27+
```
1928
## Usage
2029

2130
*Please note that both steps require an internet conection*

cazy_parser.egg-info/PKG-INFO

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
Metadata-Version: 1.1
22
Name: cazy-parser
3-
Version: 1.0.0b16
3+
Version: 1.0.1
44
Summary: A way to extract specific information from CAZy
55
Home-page: https://github.com/rodrigovrgs/cazy-parser
66
Author: Rodrigo Honorato
77
Author-email: [email protected]
88
License: GPL3
99
Description: cazy-parser
1010
============
11-
11+
1212
The `Carbohydrate-Active enZYmes Database (CAZy) <https://www.cazy.org>`_ provides access to a sequence based classification of enzyme that are responsible for the assembly, modification and breakdown of oligo and polysaccharides.
13-
13+
1414
This database has been online for eighteen years providing relevant genomic, structural and biochemical data on carbohydrate-active enzymes, such asglycoside hydrolases, glycosyl transferases, polysaccharide lyases, carbohydrateesterases and similar enzymes with auxiliary activities. The database isorganized and presented to the user as a series of highly annotated HTML tables.
15-
15+
1616
This script provides a way to extract information from the database according to user need.
17-
17+
1818
Installation
1919
============
2020
::
21-
21+
2222
pip install cazy-parser
23-
23+
2424
Documentation
2525
=============
26-
26+
2727
Please refer to the `project page <https://github.com/rodrigovrgs/cazy-parser/blob/master/README.md>`_ for usage and more information
28-
28+
2929
Keywords: cazy database datamining
3030
Platform: UNKNOWN
31-
Classifier: Development Status :: 4 - Beta
31+
Classifier: Development Status :: 5 - Production/Stable
3232
Classifier: Intended Audience :: Science/Research
3333
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
3434
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)

cazy_parser.egg-info/SOURCES.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ cazy_parser.egg-info/SOURCES.txt
99
cazy_parser.egg-info/dependency_links.txt
1010
cazy_parser.egg-info/entry_points.txt
1111
cazy_parser.egg-info/requires.txt
12-
cazy_parser.egg-info/top_level.txt
13-
paper/__init__.py
12+
cazy_parser.egg-info/top_level.txt

cazy_parser.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
cazy_parser
2-
paper

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run(self):
2929
# Versions should comply with PEP440. For a discussion on single-sourcing
3030
# the version across setup.py and the project code, see
3131
# https://packaging.python.org/en/latest/single_source_version.html
32-
version='1.0.0',
32+
version='1.0.1',
3333

3434
description='A way to extract specific information from CAZy',
3535
long_description=long_description,

0 commit comments

Comments
 (0)