make_seq | R Documentation |
Makes a sequence of markers based on an object of another type.
make_seq(input.obj, arg = NULL, phase = NULL, data.name = NULL, twopt = NULL)
input.obj |
an object of class |
arg |
its value depends on the type of object |
phase |
its value is also dependent on the type of |
data.name |
the object which
contains the raw data. This does not have to be defined by the
user: it is here for compatibility issues when calling |
twopt |
the object which
contains the two-point information. This does not have to be defined by the
user: it is here for compatibility issues when calling |
An object of class sequence
, which is a list containing the
following components:
seq.num |
a |
seq.phases |
a |
seq.rf |
a |
seq.like |
log-likelihood of the corresponding linkage map. |
data.name |
object of class |
twopt |
object of class |
Gabriel Margarido, gramarga@gmail.com
Lander, E. S., Green, P., Abrahamson, J., Barlow, A., Daly, M. J., Lincoln, S. E. and Newburg, L. (1987) MAPMAKER: An interactive computer package for constructing primary genetic linkage maps of experimental and natural populations. Genomics 1: 174-181.
compare
, try_seq
,
order_seq
and map
.
data(onemap_example_out) twopt <- rf_2pts(onemap_example_out) all_mark <- make_seq(twopt,"all") all_mark <- make_seq(twopt,1:30) # same as above, for this data set groups <- group(all_mark) LG1 <- make_seq(groups,1) LG1.ord <- order_seq(LG1) (LG1.final <- make_seq(LG1.ord)) # safe order (LG1.final.all <- make_seq(LG1.ord,"force")) # forced order markers <- make_seq(twopt,c(2,3,12,14)) markers.comp <- compare(markers) (base.map <- make_seq(markers.comp)) base.map <- make_seq(markers.comp,1,1) # same as above (extend.map <- try_seq(base.map,30)) (base.map <- make_seq(extend.map,5)) # fifth position is the best
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.