Skip to content

Commit 12f77cd

Browse files
committed
fixed command typo
1 parent 6cc9546 commit 12f77cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

07-01-FileFormats.Rmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ Where can you source reference genomes and annotation files:
1111
The top of an ensembl homo sapiens fasta file:
1212

1313
```{r, echo=FALSE, out.width="100%",}
14-
knitr::include_images("images/supplementary/chr_fasta_full_name.png")
14+
knitr::include_graphics("images/supplementary/chr_fasta_full_name.png")
1515
```
1616

1717
Fasta files will have a chromosome header line, indicated by the line starting with `>`. The header line will have the chromosome number and may contain some extra information. A minimal header can just have the chromosome number.
1818

1919
```{r, echo=FALSE, out.width="100%",}
20-
knitr::include_images("images/supplementary/chr_fasta.png")
20+
knitr::include_graphics("images/supplementary/chr_fasta.png")
2121
```
2222

2323
The lines following the header will contain that specific chromosome’s sequence
2424

2525
```{r, echo=FALSE, out.width="100%",}
26-
knitr::include_images("images/supplementary/fasta_seq.png")
26+
knitr::include_graphics("images/supplementary/fasta_seq.png")
2727
```
2828

2929
Annotation files are usually GTF or GFF3 format files. Below is a GTF file:
3030

3131
```{r, echo=FALSE, out.width="100%",}
32-
knitr::include_images("images/supplementary/gtf_file.png")
32+
knitr::include_graphics("images/supplementary/gtf_file.png")
3333
```
3434

3535
A gtf file is a 'tab separated file' - this means that it is a file with columns indicated by tab spacing. A GTF file will always have 9 columns containing the following information (taken from here):

0 commit comments

Comments
 (0)