我有一个Rmd文档,在枚举的乳胶环境之间有R代码块。编织文档时,在代码评估中遇到错误:pSeq <- read.GenBank("NC_00111")
。
我在以下代码中遇到以下错误:
\begin{enumerate}
```{r echo=FALSE, message=FALSE}
library('ape')
```
\textit{R functions: read.GenBank, ...}
\begin{enumerate}
\item the accession number NC\_00111. \newline
\textit{ only the sequence ...)}
```{r}
pSeq <- read.GenBank("NC_00111")
```
\item ...
\end{enumerate}
\end{enumerate}
错误消息:
! Missing $ inserted. <inserted text>
$ l.158 chimpSeq <- read.GenBank("NC_
00111")
我不确定如何使用solution provided here来克服此错误。还有其他解决方法或解决方案吗?