Description Usage Arguments Details Value Author(s) See Also Examples
Extract field from gencode GTF file
1 2 | extract_field_from_gencode(file, level = "gene",
primary_key = "gene_id", field = "gene_name")
|
file |
the input GTF file |
level |
level of the annotation (e.g. gene, transcript, exon, ...) |
primary_key |
primary field |
field |
field to be retrieved |
Although GTF file can be imported by makeTranscriptDbFromGFF
, some information
in the original GTF file will not be imported. This function aims to extract additionally information
from GTF file.
The function calls external perl script, so you need to have perl installed.
A vector in which 'primary_key' corresponds to the name and 'field' corresponds to the value.
Zuguang Gu <z.gu@dkfz.de>
available_gencode_fields
lists all possible values for primary_key
and field
.
1 2 3 4 5 6 7 8 | ## Not run:
download.file("ftp://ftp.sanger.ac.uk/pub/gencode/Gencode_human/release_19/gencode.v19.annotation.gtf.gz",
destfile = "gencode.v19.annotation.gtf.gz")
extract_field_from_gencode("gencode.v19.annotation.gtf.gz")
extract_field_from_gencode("gencode.v19.annotation.gtf.gz", field = "gene_type")
## End(Not run)
NULL
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.