File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,11 +12,9 @@ A script extract data from .res (results) files generated by UNICORN Chromatogra
1212
1313News
1414----
15- v0.15 released:
15+ v0.16b released:
1616
17- - Added option to disable title for plot
18- - Added option to disable plotting inject marks
19- - Added option to disable legend
17+ - Fixed line ending on non-Windows setups
2018
2119
2220Installation
Original file line number Diff line number Diff line change 44PyCORN - script to extract data from .res (results) files generated
55by UNICORN Chromatography software supplied with ÄKTA Systems
66(c)2014-2015 - Yasar L. Ahmed
7- v0.15
7+ v0.16
88'''
99import argparse
1010from pycorn import pc_res3
@@ -125,16 +125,6 @@ def xy_data(inp):
125125 return x_data , y_data
126126
127127
128- def uvdata (inp ):
129- '''
130- helps in finding the useful data
131- '''
132- UV_blocks = [i for i in inp if i .startswith ('UV' ) or i .endswith ('nm' )]
133- for i in UV_blocks :
134- if i .endswith ("_0nm" ):
135- UV_blocks .remove (i )
136-
137-
138128def smartscale (inp ):
139129 '''
140130 input is the entire fdata block
Original file line number Diff line number Diff line change 1- v.015
1+ v0.16b
2+ ======
3+ - Fixed line ending on non-Windows setups
4+
5+ v0.15
26======
37- Added option to disable title for plot
48- Added option to disable plotting inject marks
Original file line number Diff line number Diff line change 33PyCORN - script to extract data from .res (results) files generated
44by UNICORN Chromatography software supplied with ÄKTA Systems
55(c)2014-2015 - Yasar L. Ahmed
6- v0.14
6+ v0.14b
77'''
88
99from __future__ import print_function
Original file line number Diff line number Diff line change 77
88setup (
99 name = 'pycorn' ,
10- version = '0.15 ' ,
10+ version = '0.16b ' ,
1111 author = 'Yasar L. Ahmed' ,
1212 packages = ['pycorn' ],
1313 extras_require = {'plotting' : ["matplotlib" ], 'xlsx-output' : ['xlsxwriter' ]},
You can’t perform that action at this time.
0 commit comments