Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

An example script to bundle up .res to .png conversion using PyInstaller #22

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
modified original repo to include the script in examplescripts
  • Loading branch information
aretasg authored and aretasg committed Feb 23, 2019
commit 4cf693fd5e3471e9ccfe0e8e33d44bf65baa82e2
22 changes: 0 additions & 22 deletions README.md

This file was deleted.

52 changes: 52 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
======
PyCORN
======

A script to extract data from UNICORN result (.res) files and plot them.

.. image:: https://raw.githubusercontent.com/pyahmed/PyCORN/master/samples/sample1_2009Jun16no001_plot.jpg

A script extract data from .res (results) files generated by UNICORN Chromatography software supplied with AKTA Systems. This script will find all data blocks, extract the data and write out csv-files. If you have matplotlib installed it will also plot all the curves including fractions if present. Plots can be saved in any format supported by matplotlib (default is pdf). Alternatively you may import pycorn into your script and access the data inside res-files.

----

News
----
PyCORN-WEB launched:
PyCORN is now available as a web-service. Just drop your res/zip file, get a preview of the plot (generated with plotly) - adjust as needed and download a high-quality PNG file. No need to open a terminal, no Python installation etc required :-)

visit: http:https://pycornweb.appspot.com

=======

v0.19 released:

- FIXED: Injection points not recognized properly (see https://github.com/pyahmed/PyCORN/issues/12)


Installation
------------
- pip install pycorn


Known issues
------------
- See https://github.com/pyahmed/PyCORN/issues


Requirements
------------
- Python 2.7 or 3.x (Tested on Linux / Windows 7 / Mac OSX)
- optional: matplotlib (for plotting)
- optional: xlsxwriter (for xlsx-output)

Usage
-----
- See pycorn/docs/USAGE_pycorn-bin.txt if you want to extract/plot data directly
- See pycorn/docs/USAGE_pycorn_module.txt if you want to import it into your script
- See pycorn/docs/USAGE_res_to_png.txt if you want to create a single executable using PyInstaller for generation of .png plots from .res files


License
-------
- GPLv2 see docs/LICENSE.txt
Loading