# NOT RUN {
## bark beetle sequences
data(ips.cox1)
data(ips.16S)
data(ips.28S)
ips <- cbind(ips.cox1, ips.16S, ips.28S,
fill.with.gaps = TRUE)
exec <- "/Applications/RAxML-code/standard-RAxML/raxmlHPC-PTHREADS-AVX"
w <- sample(1:5, ncol(ips.cox1), replace = TRUE)
# }
# NOT RUN {
# Simple tree search with GTRCAT and GTRGAMMA
tr <- raxml(ips.cox1, f = "d", N = 2, p = 1234,
exec = exec) # -1743.528461
tr <- raxml(ips.cox1, m = "GTRGAMMA", f = "d", N = 2, p = 1234,
exec = exec)
# Applying weights to columns
tr <- raxml(ips.cox1, f = "d", N = 2, p = 1234,
weights = w, exec = exec) # -1743.528461
# Rapid bootstrap
tr <- raxml(ips.cox1, m = "GTRGAMMA",
f = "a", N = 10, p = 1234, x = 1234,
exec = exec)
# Rapid bootstrap with automatic halt
tr <- raxml(ips.cox1, m = "GTRGAMMA",
f = "a", N = "autoMRE", p = 1234, x = 1234,
exec = exec)
# }
Run the code above in your browser using DataLab