File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 4
4
PyCORN - script to extract data from .res (results) files generated
5
5
by UNICORN Chromatography software supplied with ÄKTA Systems
6
6
(c)2014-2015 - Yasar L. Ahmed
7
- v0.15c
7
+ v0.16
8
8
'''
9
9
import argparse
10
10
from pycorn import pc_res3
@@ -125,16 +125,6 @@ def xy_data(inp):
125
125
return x_data , y_data
126
126
127
127
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
-
138
128
def smartscale (inp ):
139
129
'''
140
130
input is the entire fdata block
Original file line number Diff line number Diff line change 3
3
PyCORN - script to extract data from .res (results) files generated
4
4
by UNICORN Chromatography software supplied with ÄKTA Systems
5
5
(c)2014-2015 - Yasar L. Ahmed
6
- v0.14
6
+ v0.14b
7
7
'''
8
8
9
9
from __future__ import print_function
Original file line number Diff line number Diff line change 7
7
8
8
setup (
9
9
name = 'pycorn' ,
10
- version = '0.15 ' ,
10
+ version = '0.16 ' ,
11
11
author = 'Yasar L. Ahmed' ,
12
12
packages = ['pycorn' ],
13
13
extras_require = {'plotting' : ["matplotlib" ], 'xlsx-output' : ['xlsxwriter' ]},
You can’t perform that action at this time.
0 commit comments