Skip to content

Commit 2dd24ac

Browse files
committed
Merge branch 'dev' of https://github.com/pyahmed/PyCORN into dev
2 parents 439acc0 + cd1947e commit 2dd24ac

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

examplescripts/pycorn-bin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PyCORN - script to extract data from .res (results) files generated
55
by UNICORN Chromatography software supplied with ÄKTA Systems
66
(c)2014-2016 - Yasar L. Ahmed
7-
v0.17
7+
v0.18dev
88
'''
99
import argparse
1010
from pycorn import pc_res3
@@ -163,7 +163,7 @@ def smartscale(inp):
163163
except:
164164
KeyError
165165
frac_data = None
166-
if args.xmin:
166+
if args.xmin != None:
167167
plot_x_min = args.xmin
168168
else:
169169
if frac_data:
@@ -386,4 +386,4 @@ def main2():
386386
if args.plot and plotting:
387387
plotterX(fdata, fname)
388388

389-
main2()
389+
main2()

pycorn/docs/CHANGES.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.18
2+
======
3+
- fixed xmin being ignored when 0
4+
15
v0.17
26
======
37
- Added experimental support for extracting and plotting UNICORN6 zip bundles
@@ -50,4 +54,4 @@ v0.11
5054

5155
v0.1
5256
======
53-
- Initial release
57+
- Initial release

0 commit comments

Comments
 (0)