-
Notifications
You must be signed in to change notification settings - Fork 0
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
Clarify datasets #36
Clarify datasets #36
Conversation
df <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1.csv.gz")
df2 <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1.csv.gz")
compare::compare(df, df2)
# TRUE
df <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1_BRANCHING/BR_NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1.csv.gz")
df2 <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1_BRANCHING/BR_NCP_PROGENITORS_1.csv.gz")
compare::compare(df, df2)
# TRUE df <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1.csv.gz")
df %>% select(-matches("Metadata_")) %>% dim()
# [1] 380 4293 df <- read_csv("1.run-workflows/profiles/NCP_PROGENITORS_1_BRANCHING/BR_NCP_PROGENITORS_1/BR_NCP_PROGENITORS_1.csv.gz")
df %>% select(-matches("Metadata_")) %>% dim()
# [1] 380 23 |
@yhan8 Have a look at the README The remaining puzzle (for now) is to figure out whether the repeat progenitor plate ( |
Can either @shntnu or @mtegtmey help confirm my understanding of the profiles below is correct. For stem cells, the profile is located here. I am using the For progenitor cells, the profile of morphological features is located here. Please note that the There are 20+ branching features for the progenitor cells located here. I will add these 20+ branching features to the feature selected morphological features explained in the above paragraph to generate the final progenitor profile for downstream analysis. |
No description provided.