Skip to content

Commit ca6c516

Browse files
committed
Update docs and setup.py
1 parent f87a42d commit ca6c516

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

README.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,28 @@ A script extract data from .res (results) files generated by UNICORN Chromatogra
1212

1313
News
1414
----
15-
- v0.13 released, available on PyPI, see docs/CHANGES.txt
15+
v0.14 released:
16+
17+
- Inject mark is also plotted
18+
- xlsx output added (requires xlsxwriter)
19+
- Minor changes & fixes
1620

1721

1822
Installation
1923
------------
2024
- pip install pycorn
2125

2226

23-
Limitations
24-
-----------
27+
Known issues
28+
------------
2529
- See https://github.com/pyahmed/PyCORN/issues
2630

2731

2832
Requirements
2933
------------
3034
- Python 2.7 or 3.x (Tested on Linux / Windows 7 / Mac OSX)
3135
- optional: matplotlib (for plotting)
32-
36+
- optional: xlsxwriter (for xlsx-output)
3337

3438
Usage
3539
-----

docs/USAGE_pycorn-bin.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ optional arguments:
3535
Extracting:
3636
Options for writing csv/txt files
3737

38-
-e, --extract Write csv file for supported data blocks
38+
-e {csv,xlsx}, --extract {csv,xlsx}
39+
Write data to csv or xlsx file for supported data
40+
blocks
3941

4042
Plotting:
4143
Options for plotting
@@ -63,7 +65,11 @@ Show injection points:
6365
pycorn-bin.py -t input.res
6466

6567
Extract data to csv files:
66-
pycorn-bin.py -e input.res
68+
pycorn-bin.py -e csv input.res
69+
70+
71+
Extract data to xlsx-file:
72+
pycorn-bin.py -e xlsx input.res
6773

6874
Plot all data:
6975
pycorn-bin.py -p input.res

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77

88
setup(
99
name='pycorn',
10-
version='0.13',
10+
version='0.14',
1111
author='Yasar L. Ahmed',
1212
packages=['pycorn',],
13+
extras_require = {'plotting': ["matplotlib"], 'xlsx-output': ['xlsxwriter']},
1314
scripts=['examplescripts/pycorn-bin.py'],
1415
license='GNU General Public License v2 (GPLv2)',
1516
description='A script to extract data from UNICORN result (res) files',

0 commit comments

Comments
 (0)