You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IQ-TREE replaces apostrophes with underscores, causing a mismatch between strain names from input sequences/metadata and the output tree and breaking the downstream workflow. This commit adds instructions for users to replace the apostrophes themselves prior to analysis, to avoid this issue.
Some strain names contain characters that IQ-TREE does not allow and which it will convert to underscores in its output trees.
202
+
For example, the apostrophe in the name "Cote d'Ivoire" will be replaced with an underscore.
203
+
To avoid mismatches between strain names caused by this IQ-TREE replacement, we replace those characters in the initial FASTA file at the beginning of the analysis using [seqkit's replace command](https://bioinf.shenwei.me/seqkit/usage/#replace).
204
+
205
+
```bash
206
+
# Install seqkit. Optionally, use "mamba install" instead of "conda install".
207
+
conda install -c conda-forge -c bioconda seqkit
208
+
209
+
# Replace apostrophes with underscores in the FASTA record names.
0 commit comments