You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Create an empty list to store column names
assay_sampleids <- list()
# Iterate over each object and save its column names, excluding specific values
for (object_name in norm_objects) {
assay_sampleids[[object_name]] <-
setdiff(
colnames(
get(object_name,
envir = asNamespace("MotrpacRatTraining6moData"))),
c("feature", "feature_ID", "tissue", "assay"))
}
# print(assay_sampleids)
ToDo: add the same for metabolomics and immunoassays
The text was updated successfully, but these errors were encountered:
I started this code:
ToDo: add the same for metabolomics and immunoassays
The text was updated successfully, but these errors were encountered: