After using drop.tip command from the APE package on a phylogenetic tree, I plotted my tree using R and everything looked ok. After exporting the newick file, I found that the tips I dropped ended up dropping just the labels and were replaced by this character,:0. The tips I dropped were duplicates and had a branch length of zero, but I do not know how to fix it to where it drops the edge as well. I am relatively new to R, so any advice is appreciated!
I used this workflow based on the documentation provided by the APE creators. I have used the same command with other trees and this is the first time I ran into an issue where I get this :0 character when I export the tree. I honestly don't know which parameters I can adjust that will fix this issue.
L9_CRESS <- read.tree(file = "L9_CRESS.nwk" )
dropped_tip_b9 <- drop.tip(L9_CRESS, tip= c(232,260,261), trim.internal = TRUE, subtree = TRUE,
root.edge = 2, rooted = is.rooted(L9_CRESS), collapse.singles = FALSE,
interactive = FALSE)
write.tree(L9_CRESS, file = "L9_CRESS_V2.nwk", append = FALSE,
digits = 5, tree.names = FALSE)