Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.18 KB

README.md

File metadata and controls

37 lines (27 loc) · 1.18 KB

Cowfish

Cowfish is an Aquarium cytometry results analyzing software package written in Python.

Installation

git clone https://github.com/klavinslab/cowfish.git
cd cowfish
sudo pip install .

How to use

Importing and initialization

from cowfish import Cowfish
co = Cowfish(aquarium_url/api, aquarium_login, aquarium_api_key, local_folder_path_to_store_downloads)

Aquarium cytometry job data summary

An example:

df_singlets = co.cytometry_results_summary([job_id_1,job_id_2,job_id_3], ploidy="haploid", only='singlets')

This will process the cytometry results in job_id_1, job_id_2, and job_id_3, pass through yeast haploid and singlets gate and return a Pandas dataframe (a table like data structure but much more powerful thanks to Pandas) that summarizing all the results with time, sample_name, fluorescence value, concentration.

Dependencies

python 2.7: