View source: R/generateIntergenicCoor.R
generateIntergenicCoor | R Documentation |
Function generates intergenic coordinates from a UCSC genePred table.
It allows users to specify the genePred data source, the relative position
and minimum length for intergenic regions, and whether to return the results
as a Coordinate
object or a data.table
.
generateIntergenicCoor(
genepred,
genome.name,
fasta.path,
igr.rel.pos = c(5000, 7500),
igr.min.length = 150,
return.coor.obj = FALSE
)
genepred |
UCSC genePred table or database name ("refseq" or "gencode"). |
genome.name |
UCSC genome name (e.g., hg38, mm39). |
fasta.path |
Path to a directory of user-provided genome FASTA files or the destination to save the NCBI/UCSC downloaded reference genome files. |
igr.rel.pos |
Intergenic relative position, defaults to c(5000, 7500). |
igr.min.length |
Minimum length for intergenic regions, default is 150. |
return.coor.obj |
Return results as a |
Intergenic coordinates as a data.table
or Coordinate
object.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.