Skip to content

Instantly share code, notes, and snippets.

@mikelove
Last active July 12, 2023 09:04
Show Gist options
  • Save mikelove/bd7f0e5940cb731eb38cb4284ed5c036 to your computer and use it in GitHub Desktop.
Save mikelove/bd7f0e5940cb731eb38cb4284ed5c036 to your computer and use it in GitHub Desktop.
Biocondutor meme text
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