Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
ViSEAGO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
UMR-BOA
ViSEAGO
Commits
41b6313b
Commit
41b6313b
authored
4 years ago
by
Aurelien Brionne
Browse files
Options
Downloads
Patches
Plain Diff
Ensemble 2GO()default biomart connector update
parent
c5d5d85d
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
DESCRIPTION
+1
-1
1 addition, 1 deletion
DESCRIPTION
NEWS
+1
-0
1 addition, 0 deletions
NEWS
R/Ensembl2GO.R
+4
-4
4 additions, 4 deletions
R/Ensembl2GO.R
README.md
+1
-1
1 addition, 1 deletion
README.md
man/Ensembl2GO.Rd
+4
-4
4 additions, 4 deletions
man/Ensembl2GO.Rd
with
11 additions
and
10 deletions
DESCRIPTION
+
1
−
1
View file @
41b6313b
Package: ViSEAGO
Version: 1.3.
1
Version: 1.3.
2
Title: ViSEAGO: a Bioconductor package for clustering biological functions using Gene Ontology and semantic similarity
Author: Aurelien Brionne [aut, cre],
Amelie Juanchich [aut],
...
...
This diff is collapsed.
Click to expand it.
NEWS
+
1
−
0
View file @
41b6313b
...
...
@@ -68,4 +68,5 @@ CHANGES IN VERSION 1.2
CHANGES IN VERSION 1.3
------------------------
o print graph with orca
o Ensembl2GO() biomart update
This diff is collapsed.
Click to expand it.
R/Ensembl2GO.R
+
4
−
4
View file @
41b6313b
...
...
@@ -2,7 +2,7 @@
#' @description List Ensembl referenced organisms datasets from the current (NULL) or archive (number in \code{character}) annotation version.
#' @importFrom biomaRt useEnsembl listEnsembl listDatasets
#' @importFrom data.table data.table
#' @param biomart the biomart name (eg. "ens
embl
", the default) available with \pkg{biomaRt} package \code{\link[biomaRt]{listEnsembl}}.
#' @param biomart the biomart name (eg. "
g
en
e
s", the default) available with \pkg{biomaRt} package \code{\link[biomaRt]{listEnsembl}}.
#' @param host the Ensembl host adress for \href{http://www.ensembl.org/index.html}{vertebrate} ("www.ensembl.org", the default value),
#' \href{http://www.plants.ensembl.org/index.html}{plants} ("plants.ensembl.org"),
#' \href{http://www.metazoa.ensembl.org/index.html}{metazoa} ("metazoa.ensembl.org"),
...
...
@@ -35,17 +35,17 @@
#' \dontrun{
#' # check the Ensembl available biomart (if not known)
#' # for Animals (host="www.ensembl.org", the default)
#'
biomaRt::listEnsembl()
#' biomaRt::listEnsembl()
#'
#' # List Ensembl available organisms
#' Ensembl<-ViSEAGO::Ensembl2GO(
#' biomart="ens
embl
",
#' biomart="
g
en
e
s",
#' host="www.ensembl.org",
#' version=NULL
#' )
#' }
#' @export
Ensembl2GO
=
function
(
biomart
=
"ens
embl
"
,
host
=
"www.ensembl.org"
,
version
=
NULL
){
Ensembl2GO
=
function
(
biomart
=
"
g
en
e
s"
,
host
=
"www.ensembl.org"
,
version
=
NULL
){
# check the ensembl genes releases
Ensembl
<-
listEnsembl
(
host
=
host
,
version
=
version
)
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
41b6313b
...
...
@@ -27,7 +27,7 @@ remotes::install_gitlab(
devtools
::
build
(
"ViSEAGO"
)
# install package (from R console)
install.packages
(
"ViSEAGO_1.3.
1
.tar.gz"
,
repos
=
NULL
,
type
=
"source"
)
install.packages
(
"ViSEAGO_1.3.
2
.tar.gz"
,
repos
=
NULL
,
type
=
"source"
)
```
## Citation
...
...
This diff is collapsed.
Click to expand it.
man/Ensembl2GO.Rd
+
4
−
4
View file @
41b6313b
...
...
@@ -4,10 +4,10 @@
\alias{Ensembl2GO}
\title{Check available organisms datasets at Ensembl.}
\usage{
Ensembl2GO(biomart = "ens
embl
", host = "www.ensembl.org", version = NULL)
Ensembl2GO(biomart = "
g
en
e
s", host = "www.ensembl.org", version = NULL)
}
\arguments{
\item{biomart}{the biomart name (eg. "ens
embl
", the default) available with \pkg{biomaRt} package \code{\link[biomaRt]{listEnsembl}}.}
\item{biomart}{the biomart name (eg. "
g
en
e
s", the default) available with \pkg{biomaRt} package \code{\link[biomaRt]{listEnsembl}}.}
\item{host}{the Ensembl host adress for \href{http://www.ensembl.org/index.html}{vertebrate} ("www.ensembl.org", the default value),
\href{http://www.plants.ensembl.org/index.html}{plants} ("plants.ensembl.org"),
...
...
@@ -38,11 +38,11 @@ It uses the \code{\link[biomaRt]{useEnsembl}} and \code{\link[biomaRt]{listData
\dontrun{
# check the Ensembl available biomart (if not known)
# for Animals (host="www.ensembl.org", the default)
biomaRt::listEnsembl()
biomaRt::listEnsembl()
# List Ensembl available organisms
Ensembl<-ViSEAGO::Ensembl2GO(
biomart="ens
embl
",
biomart="
g
en
e
s",
host="www.ensembl.org",
version=NULL
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment