pplace_to_table: Merge the multiclass and the placement table of pplace object
Description
Merge the multiclass and the placement table of pplace object
Usage
pplace_to_table(pplace, type = "full",run_id=NULL)
Arguments
pplace
a pplace object
type
the placement type to consider
run_id
A vector of run_id to subset
Value
a data frame with the same column names as the mutliclass and placements tables
Details
For the type argument, either "full" or "best" are accepted. Whereas for the "full" type, all the placements are considered, only the best placement for each sequence is considered for the "best" type.
# NOT RUN {data(pplace)
### with every placementpplace_to_table(pplace)
### keeping only the best placement for each sequencepplace_to_table(pplace,type="best")
# }