We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Modify function to fix the below example
library(pRolocdata) data("hyperLOPIT2015") getMarkerClasses(hyperLOPIT2015) hyperLOPIT2015 <- fDataToUnknown(hyperLOPIT2015, fcol = "markers", from = "Nucleus - Chromatin", to = "CHROMATIN") getMarkerClasses(hyperLOPIT2015) hyperLOPIT2015 <- fDataToUnknown(hyperLOPIT2015, fcol = "markers", from = "Nucleus - Non-chromatin", to = "NUCLEUS") getMarkerClasses(hyperLOPIT2015) hyperLOPIT2015 <- fDataToUnknown(hyperLOPIT2015, fcol = "markers", from = "NUCLEUS", to = "NUCLEUS/CHROMATIN") getMarkerClasses(hyperLOPIT2015) [1] "40S Ribosome" "60S Ribosome" "Actin cytoskeleton" [4] "CHROMATIN" "Cytosol" "Endoplasmic reticulum/Golgi apparatus" [7] "Endosome" "Extracellular matrix" "Lysosome" [10] "Mitochondrion" "NUCLEUS/CHROMATIN" "Peroxisome" [13] "Plasma membrane" "Proteasome" hyperLOPIT2015 <- fDataToUnknown(hyperLOPIT2015, fcol = "markers", from = "CHROMATIN", to = "NUCLEUS/CHROMATIN") getMarkerClasses(hyperLOPIT2015) [1] "40S Ribosome" "60S Ribosome" "Actin cytoskeleton" [4] "Cytosol" "Endoplasmic reticulum/Golgi apparatus" "Endosome" [7] "Extracellular matrix" "Lysosome" "Mitochondrion" [10] "NUCLEUS/CHROMATIN" "NUCLEUS/NUCLEUS/CHROMATIN" "Peroxisome" [13] "Plasma membrane" "Proteasome"
The text was updated successfully, but these errors were encountered:
lmsimp
No branches or pull requests
Modify function to fix the below example
The text was updated successfully, but these errors were encountered: