Allows reading Bio-Rad *.1sc image/analysis files.
Project description
Python Package to read, parse, convert *.1sc files generated by Bio-Rad Quantity One software.
Also installs bio1sc2tiff command-line executable to convert *.1sc files to *.tif images.
Also installs bio1scmeta command-line executable to report all metadata contained in each *.1sc file to a text file.
An optional dependency: numpy. If present, biorad1sc_reader will run 4x to 5x faster.
Current Status
Version 0.3
- “Alpha” quality software
API subject to change
No known problems in operation.
- Installs command-line executables
bio1sc2tiff (type bio1sc2tiff --help)
bio1scmeta (type bio1scmeta --help)
Reading Image Data OK
- Saving Image from file to new TIFF file OK
Reader.save_img_as_tiff()
Reader.save_img_as_tiff_sc()
- Reading all metadata OK
Reader.get_metadata()
Reader.get_metadata_compact()
- Reading Image Metadata from Data Block 7 OK
Reader.get_img_summary()
- Current info
Scanner Name: <Scanner Name>
Number of Pixels: (<img_size_x> x <img_size_y>)
Image Area: (<img_size_x> mm x <img_size_y> mm)
Scan Memory Size: <total_img_size> Kb
Old file name: <old_file_name>
New file name: <new_file_name>
<File Directory>
New Image Acquired
Save As…
Quantity One <Quantity One Version String>
- python2 (lack of) support
I’m currently unwilling to support python2
If you’d like python2 support, it’s DIY. :)
Documentation
Examples
# setup reader with input file import bio1sc_reader myreader = bio1sc_reader.Reader("my_biorad_file.1sc") # get list/dict of all metadata in 1sc file my_img_metadata = myreader.get_metadata() # get a more succinct data structure of all metadata in 1sc file my_img_metadata = myreader.get_metadata_compact() # get a quick summary of some metadata about the image in the 1sc file my_img_metadata = myreader.get_img_summary() # Different options for writing image data out as a TIFF file myreader.save_img_as_tif("unscaled_brightness.tif") myreader.save_img_as_tif("unscaled_inverted_brightness.tif", invert=True) myreader.save_img_as_tif_sc("scaled_brightness.tif") myreader.save_img_as_tif_sc("scaled_brightness_more.tif", scale=0.8) myreader.save_img_as_tif_sc("scaled_inverted_brightness.tif", invert=True)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file biorad1sc_reader-0.3.tar.gz
.
File metadata
- Download URL: biorad1sc_reader-0.3.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b65429ec5545f7623a8b0b58492fe11e80bb36febf8130ba28c5b7408ffb2643 |
|
MD5 | ba1aa27b37fc7278f3fc10f3dc5dbd86 |
|
BLAKE2b-256 | 59e7a8f22fbf7a2dd5b6bce3d241196ad1e509491050f98ef38fac79832b24f8 |
File details
Details for the file biorad1sc_reader-0.3-py3-none-any.whl
.
File metadata
- Download URL: biorad1sc_reader-0.3-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4800cdd63be3e9e84df78bc26aa1a50fcb46a9af90c6f99f0d1a8bcf60680bc0 |
|
MD5 | 62ca57db1f377565900e68dea6d7b84e |
|
BLAKE2b-256 | d0fa0435afbca9e543ce06e410338aacc6e2db3388e4cff2a991593ad296843e |