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

adding mouse v human example to starfish.data #1741

Merged
merged 1 commit into from
Jan 22, 2020
Merged
Changes from all commits
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
16 changes: 16 additions & 0 deletions starfish/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,22 @@ def allen_smFISH(use_test_data: bool = False) -> Experiment:
"https://d26bikfyahveg8.cloudfront.net/smFISH/mouse/formatted_with_DAPI/experiment.json")


def MOUSE_V_HUMAN():
"""
Corresponds to sequencing 4 bases of the beta-actin gene in co-cultured mouse and human
fibroblasts. These 4 bases only differ in one position, a SNP between species. as such,
these data offer ground truth information to validate a cell typing exercise

`<https://www.ncbi.nlm.nih.gov/pubmed/23852452>`_

Returns
-------
Experiment
"""
return Experiment.from_json(
"https://d2z4zivcmlmaj1.cloudfront.net/ISS/mouse_vs_human/experiment.json")


def DARTFISH(use_test_data: bool = False) -> Experiment:
"""
Loads an experiment with a single field of view from unpublished data generated with DARTFISH v1
Expand Down