-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathena_query.Rd
More file actions
65 lines (52 loc) · 1.6 KB
/
ena_query.Rd
File metadata and controls
65 lines (52 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ena_query.R
\name{ena_query}
\alias{ena_query}
\title{Retrieve sequences from ENA}
\usage{
ena_query(
accessions,
mode = "fasta",
expanded = FALSE,
annotation_only = FALSE,
line_limit = 0,
download = FALSE,
destfile_by = "all",
gzip = FALSE,
set = FALSE,
include_links = FALSE,
range = NULL,
complement = FALSE,
batch_size = 0,
verbose = getOption("verbose")
)
}
\arguments{
\item{accessions}{character; Accessions to query.}
\item{mode}{character; Can be either \code{"embl"}, \code{"fasta"}, or
\code{"xml"}.}
\item{expanded}{logical; Get expanded records for CON sequences.}
\item{annotation_only}{logical; Only retrieve annotation, no sequence.}
\item{line_limit}{integer; Limit the number of text lines returned.}
\item{download}{logical; Download the result as a file.}
\item{destfile_by}{character; Number of files to download.
\code{"batch"}: one file for each batch, \code{"all"}: one file altogether.}
\item{gzip}{logical; Download the result as a gzip file.}
\item{set}{logical; ???}
\item{include_links}{logical; ???}
\item{range}{character; ???}
\item{complement}{logical; ???}
\item{batch_size}{integer; Number of accessions to query in a single request.
Using this value, accessions will be broken down into one or more batches.
If set to 0, all accessions will be queried in a single request.}
\item{verbose}{logical; Should verbose messages be printed to the console?}
}
\description{
Retrieve sequences from ENA
}
\examples{
\dontrun{
ena_query("LC136852")
ena_query(c("LC136852", "LC136853"))
}
}