Skip to content

Commit 708cfc6

Browse files
committed
Variable name
1 parent dbcfa4e commit 708cfc6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

R/get_inheritance.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#' @examples
1212
#' get_inheritance(get_omim(303600, geneMap=TRUE))
1313

14-
get_inheritance <- function(xml){
14+
get_inheritance <- function(my_xml){
1515
my_inheritance_node <- getNodeSet(my_xml, path = "/omim/entryList/entry/phenotypeMapList/phenotypeMap/phenotypeInheritance")
1616
xmlSApply(my_inheritance_node, xmlValue)
1717
}

R/get_pheno_key.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' @examples
1010
#' get_pheno_key(get_omim(303600, geneMap=TRUE))
1111

12-
get_pheno_key <- function(xml){
12+
get_pheno_key <- function(my_xml){
1313
my_pheno_node <- getNodeSet(my_xml, path = "/omim/entryList/entry/phenotypeMapList/phenotypeMap/phenotypeMappingKey")
1414
xmlSApply(my_pheno_node, xmlValue)
1515
}

R/get_title.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' @examples
1010
#' get_title(get_omim(100200))
1111

12-
get_title <- function(xml){
12+
get_title <- function(my_xml){
1313
my_preferred_title_node <- getNodeSet(my_xml, path = "/omim/entryList/entry/titles/preferredTitle")
1414
xmlSApply(my_preferred_title_node, xmlValue)
1515
}

man/get_inheritance.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/get_pheno_key.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/get_title.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)