-
Hi! I am working with a NanoString PlexSet data set and I am trying to figure out the best way to demultiplex it to remove some of the samples from the normalization process which I know to contain technical errors. I am not sure about the best way to go about doing this and any insights would be greatly appreciated thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Jun 2, 2023
Replies: 1 comment 1 reply
-
Hi, You could modify the returned object from library(NACHO)
data(GSE74821) # results from NACHO::load_rcc()
GSE74821[["nacho"]] <- dplyr::filter(
.data = GSE74821[["nacho"]],
<some filter of your own making>
)
normalise(GSE74821) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
colsen-bu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
You could modify the returned object from
NACHO::load_rcc()
.For example: