Plotting bootstrap values on a tree using a file with bootstrap replicates #305
-
Hello, I have generated 200 bootstrap replicates using an array job and have combined them all into a single file. However, I'm now struggling to use this file to plot the bootstrap proportions onto my main tree. Is there a way to do this in IQ-TREE? I have tried a couple of different commands, but I keep getting the same error message: I don't understand what PD is, or how I should inform the program on the number of taxa. thank you! Veronica |
Beta Was this translation helpful? Give feedback.
Answered by
veronicamb
Aug 22, 2024
Replies: 1 comment 4 replies
-
I figured it out! |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Of course! My bad, I should have done that before closing the thread. Here it is:
I'm working on a large dataset (~1000 taxa), which makes running bootstraps time-consuming. The best solution was to run each bootstrap replicate in parallel (using many computer nodes) to speed up the analysis.
I first ran a partitioned ML analysis with ultrafast bootstraps.
Then I ran 200 nonparametric bootstraps using an array script (set up in the SLURM header)
iqtree -s datamatrix.nex -spp ML_tree.best.scheme.nex -pre bootstrap_replicates/bootstrap_$SLURM_ARRAY_TASK_ID --nt AUTO -b 1
After the run, the …