Skip to content

Commit e7620c1

Browse files
committed
Spelling corrections
1 parent cf776d9 commit e7620c1

7 files changed

+8
-7
lines changed

DESCRIPTION

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Description: 'geneviewer' is an R package for plotting gene clusters and
1313
License: MIT + file LICENSE
1414
Encoding: UTF-8
1515
LazyData: true
16+
Language: en-US
1617
RoxygenNote: 7.3.1
1718
URL: https://github.com/nvelden/geneviewer
1819
BugReports: https://github.com/nvelden/geneviewer/issues

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# geneviewer 0.1.6
1313

1414
### Enhancements:
15-
- Option to perfrom BlastP between gene clusters.
15+
- Option to perform BlastP between gene clusters.
1616
- Add option to add links between genes in clusters.
1717

1818
# geneviewer 0.1.5

R/read_genbank.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Read Data from GenBank Files
22
#'
3-
#' This function reads data from a single GenBank file or directorty with
3+
#' This function reads data from a single GenBank file or directory with
44
#' GenBank files. It allows selective extraction of information by specifying
55
#' sections and features.
66
#'

man/read_gbk.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/BLASTP.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ BlastP_results <- geneviewer::protein_blast(
8080
)
8181
```
8282

83-
After running the BlastP, the dataset will contain three additional columns. These colums are:
83+
After running the BlastP, the dataset will contain three additional columns. These columns are:
8484

8585
- **BlastP**: Indicates the top BlastP match found within the query cluster, characterized by its unique protein id.
8686
- **identity**: The percentage identity to the BlastP hit.
@@ -91,7 +91,7 @@ After running the BlastP, the dataset will contain three additional columns. The
9191
kable(head(BlastP_results %>% select(-translation)))
9292
```
9393

94-
We can visualize the results using `geneviewer`. In the graph the clusters are ordered based on the synteny score. The genes are colored by the BlasP hit found in the query cluster. Genes that remain uncolored did not have any significant homologous. By hoovering over the genes one can see the percentage identity and similarity.
94+
We can visualize the results using `geneviewer`. In the graph the clusters are ordered based on the synteny score. The genes are colored by the BlastP hit found in the query cluster. Genes that remain uncolored did not have any significant homologous. By hoovering over the genes one can see the percentage identity and similarity.
9595

9696
```{r echo = TRUE, results='asis'}
9797
GC_chart(

vignettes/LoadGenBankFiles.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ chart %>%
135135

136136
### Loading Multiple GenBank files
137137

138-
The above functions to read and transfom .gbk files can also be used to load multiple .gbk files from a folder and shown the clusters side by side. To demonstrate this we can go to the cluster page for [BGC0000001](https://mibig.secondarymetabolites.org/repository/BGC0000001/index.html#r1c1) and navigate to the "KnownClusterBlast" page. Click on the homologous clusters and download the .gbk files for [BGC0001694](https://mibig.secondarymetabolites.org/repository/BGC0001694/index.html#r1c1), [BGC0001492](https://mibig.secondarymetabolites.org/repository/BGC0001492/index.html#r1c1), [BGC0001288](https://mibig.secondarymetabolites.org/repository/BGC0001288/index.html#r1c1) and [BGC0000133](https://mibig.secondarymetabolites.org/repository/BGC0000133/index.html#r1c1).
138+
The above functions to read and transform .gbk files can also be used to load multiple .gbk files from a folder and shown the clusters side by side. To demonstrate this we can go to the cluster page for [BGC0000001](https://mibig.secondarymetabolites.org/repository/BGC0000001/index.html#r1c1) and navigate to the "KnownClusterBlast" page. Click on the homologous clusters and download the .gbk files for [BGC0001694](https://mibig.secondarymetabolites.org/repository/BGC0001694/index.html#r1c1), [BGC0001492](https://mibig.secondarymetabolites.org/repository/BGC0001492/index.html#r1c1), [BGC0001288](https://mibig.secondarymetabolites.org/repository/BGC0001288/index.html#r1c1) and [BGC0000133](https://mibig.secondarymetabolites.org/repository/BGC0000133/index.html#r1c1).
139139

140140
We place all the.gbk files in the same directory and can load them all together as we have done previously.
141141

vignettes/MUMMER.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ knitr::opts_chunk$set(
1919

2020
### Intro
2121

22-
This tutorial guides you through the process of performing genome alignments using [MUMmer](https://mummer4.github.io/index.html), an alignment tool widely used for comparing genomic sequences. As an example we will align the plasmids from serveral species of *B. thuringiensis*. Following the alignment, we'll show you how to visualize the results using **`geneviewer`**.
22+
This tutorial guides you through the process of performing genome alignments using [MUMmer](https://mummer4.github.io/index.html), an alignment tool widely used for comparing genomic sequences. As an example we will align the plasmids from several species of *B. thuringiensis*. Following the alignment, we'll show you how to visualize the results using **`geneviewer`**.
2323

2424
### Materials
2525

0 commit comments

Comments
 (0)