Description Usage Arguments Value Examples
Fulltext search in SRA
1 2 3 4 5 6 7 | .searchAnywhereSRA(
SRA_query,
acc_levels = c("run", "experiment", "sample", "study"),
SRA_library_strategy = NULL,
SRA_other_library_strategy = c("OTHER", "NA", "NULL"),
...
)
|
SRA_query |
Query passed to fts MATCH operator (cannot be a vector) |
acc_levels |
Character vector denoting which accession levels will be searched. Choose from some/all of c("run", "experiment", "sample", "study") |
SRA_library_strategy |
Character vector denoting library_strategy/ies of choice (OPTIONAL) |
SRA_other_library_strategy |
A character vector indicating whether (and which) uncategorised library strategies are accepted (choose between one and all elements of c("OTHER", "NA", "NULL")); if not desired, set equal to FALSE. NOTE: only evaluated if library strategy is provided |
... |
Other options |
Data frame with results
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## stat3
# .searchAnywhereSRA("stat3")
## stat3 in human samples
# .searchAnywhereSRA("stat3 taxon_id: 9606")
## stat3 chip-seq (including unclassified library strategies)
# .searchAnywhereSRA("stat3", library_strategy = "ChIP-Seq")
## stat3 chip-seq not including unclassified library strategies
# .searchAnywhereSRA("stat3",
# library_strategy = "ChIP-Seq",
# SRA_other_library_strategy = FALSE)
## stat3 ignoring matches at study level
#.searchAnywhereSRA("stat3", acc_levels = c("run", "experiment", "sample"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.