FastQFromSRR | R Documentation |
Get sequencing data from the SRA.
FastQFromSRR(SRR,
ARGS = list("--gzip" = NULL,
"--skip-technical" = NULL,
"--readids" = NULL,
"--read-filter" = "pass",
"--dumpbase" = NULL,
"--split-3" = NULL,
"--clip" = NULL),
KEEPFILES = FALSE)
SRR |
A character vector of length 1 representing an SRA Run Accession, such as one that would be passed to the |
ARGS |
A list representing key and value sets used to construct the call to |
KEEPFILES |
Logical indicating whether or not keep the downloaded fastq files outside of the R session. If |
FastQFromSRR
is a barebones wrapper for fastq-dump
, it is set up for convenience purposes only and does not add any additional functionality. Requires a functioning installation of the SRAtoolkit.
A list of QualityScaledDNAStringSets
. The composition of this list will be determined by fastq-dump
's splitting arguments.
Nicholas Cooley npc19@pitt.edu
x <- "ERR10466327"
y <- FastQFromSRR(SRR = x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.