Last active
July 12, 2023 09:04
-
-
Save mikelove/bd7f0e5940cb731eb38cb4284ed5c036 to your computer and use it in GitHub Desktop.
Biocondutor meme text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
airway@assays@data[["counts"]][airway@rowRanges@elementMetadata@listData$gene_id == "ENSG00000000003", airway@colData@listData$dex == "trt"] | |
assays(airway)[["counts"]][names(rowRanges(airway)) == "ENSG00000000003", colData(airway)$dex == "trt"] | |
assay(airway, "counts")["ENSG00000000003", airway$dex == "trt"] | |
airway |> filter(symbol == "TSPAN6", dex == "trt") |> pull(counts) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment