Description Usage Arguments Details Value Author(s) Examples
Given a vector of sequence lengths, generate genomic intervals uniformly at random
1 | random.intervals(I, n=1, ms=10000)
|
I |
a GRanges object giving intervals from which to sample from |
n |
number of intervals to generate |
ms |
length of the intervals to generate (may be a vector) |
The function is used to place intervals of fixed sizes at random (possibly
overlapping) positions across one or more sequences. The input should be a
GRanges
objects giving the sequence intervals in which the random intervals
sholud be placed. If they are to be placed anywhere within a reference
sequence, use the scanFaIndex
function from Rsamtools, to obtain a set
of intervals.
Returns a GRanges object giving the generated intervals.
Daniel Jones dcjones@cs.washington.edu
1 2 3 4 5 6 7 8 | library(Rsamtools)
ref_fn <- system.file( "extra/example.fa", package = "seqbias" )
ref_f <- FaFile( ref_fn )
open.FaFile( ref_f )
ref_seqs <- scanFaIndex( ref_f )
I <- random.intervals( ref_seqs, n = 100, ms = 1000 )
|
Loading required package: GenomicRanges
Loading required package: stats4
Loading required package: BiocGenerics
Loading required package: parallel
Attaching package: ‘BiocGenerics’
The following objects are masked from ‘package:parallel’:
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from ‘package:stats’:
IQR, mad, sd, var, xtabs
The following objects are masked from ‘package:base’:
anyDuplicated, append, as.data.frame, basename, cbind, colnames,
dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which.max, which.min
Loading required package: S4Vectors
Attaching package: ‘S4Vectors’
The following object is masked from ‘package:base’:
expand.grid
Loading required package: IRanges
Loading required package: GenomeInfoDb
Loading required package: Biostrings
Loading required package: XVector
Attaching package: ‘Biostrings’
The following object is masked from ‘package:base’:
strsplit
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.