Skip to content

Commit f85b533

Browse files
committed
Fixed flagged typos in GeneLab_Reference_Annotations
1 parent c0f1ed0 commit f85b533

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

GeneLab_Reference_Annotations/Pipeline_GL-DPPD-7110_Versions/GL-DPPD-7110/GL-DPPD-7110.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ string_db <- STRINGdb$new(version = "11.5", species = target_taxid, score_thresh
217217
string_map <- string_db$map(annot, primary_keytype, removeUnmappedRows = FALSE, takeFirst = FALSE)
218218

219219
## Create a table using the gene IDs of the primary keytype as row names and a column containing STRING IDs. ##
220-
## For genes containig multiple STRING IDs, combine all STRING IDs for each gene into one row and separate each ID with a '|' ##
220+
## For genes containing multiple STRING IDs, combine all STRING IDs for each gene into one row and separate each ID with a '|' ##
221221
tab_with_multiple_STRINGids_combined <-
222222
data.frame(row.names = annot[[primary_keytype]])
223223

@@ -256,7 +256,7 @@ pthOrganisms(PANTHER.db) <- target_organism
256256
## Use ENTREZ IDs to map genes to respective PANTHER GO slim annotation(s) ##
257257
# Note: Since there can be none (indicated in the annotation table as "NA"), one, or
258258
# multiple ENTREZ IDs for a gene, this section contains 3 distinct parts to handle
259-
# each of those scenarios and create a new column in the annotation table containg the GO slim IDs
259+
# each of those scenarios and create a new column in the annotation table containing the GO slim IDs
260260

261261
for ( curr_row in 1:dim(annot)[1] ) {
262262

GeneLab_Reference_Annotations/Workflow_Documentation/GL_RefAnnotTable/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Rscript GL-DPPD-7110_build-genome-annots-tab.R MOUSE
7171

7272
**Input data:**
7373

74-
- No input files required, but a target organism must be specified as a positional command line argument, `MOUSE` is used in the example above. Run `Rscript GL-DPPD-7110_build-genome-annots-tab.R` with no positional arugments to see the list of currently available organisms.
74+
- No input files required, but a target organism must be specified as a positional command line argument, `MOUSE` is used in the example above. Run `Rscript GL-DPPD-7110_build-genome-annots-tab.R` with no positional arguments to see the list of currently available organisms.
7575

7676
**Output data:**
7777

GeneLab_Reference_Annotations/Workflow_Documentation/GL_RefAnnotTable/workflow_code/GL-DPPD-7110_build-genome-annots-tab.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ string_map <- string_db$map(annot, primary_keytype, removeUnmappedRows = FALSE,
263263
## Adding some blank lines just for spacing on print-out ##
264264
cat("\n\n")
265265

266-
## Create a table using the gene IDs of the primary keytype as row names and a column containing STRING IDs. For genes containig multiple STRING IDs, combine all STRING IDs for each gene into one row and separate each ID with a '|' ##
266+
## Create a table using the gene IDs of the primary keytype as row names and a column containing STRING IDs. For genes containing multiple STRING IDs, combine all STRING IDs for each gene into one row and separate each ID with a '|' ##
267267

268268
tab_with_multiple_STRINGids_combined <-
269269
data.frame(row.names = annot[[primary_keytype]])
@@ -303,7 +303,7 @@ pthOrganisms(PANTHER.db) <- target_organism
303303

304304
## Use ENTREZ IDs to map genes to respective PANTHER GO slim annotation(s) ##
305305

306-
## Note: Since there can be none (indicated in the annotation table as "NA"), one, or multiple ENTREZ IDs for a gene, this section contains 3 distinct parts to handle each of those scenarios and create a new column in the annotation table containg the GO slim IDs ##
306+
## Note: Since there can be none (indicated in the annotation table as "NA"), one, or multiple ENTREZ IDs for a gene, this section contains 3 distinct parts to handle each of those scenarios and create a new column in the annotation table containing the GO slim IDs ##
307307

308308
for ( curr_row in 1:dim(annot)[1] ) {
309309

0 commit comments

Comments
 (0)