Skip to content

Commit f1df1cc

Browse files
committed
initial commit
0 parents  commit f1df1cc

File tree

577 files changed

+6066840
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

577 files changed

+6066840
-0
lines changed

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM arcolombo/arkasgithublayer:v1
2+
COPY /runScripts /bin
3+
COPY /arkasAnalysisBaseSpace /arkasAnalysisBaseSpace
4+
COPY /arkasBasespace /arkasBasespace
5+
COPY /outputReport /outputReport
6+
COPY /Rccdashboard /Rccdashboard
7+
RUN R CMD INSTALL /Rccdashboard
8+
RUN R CMD INSTALL /arkasAnalysisBaseSpace
9+
RUN R CMD INSTALL /arkasBasespace
10+
COPY /speedSage_1.03.tar.gz /speedSage_1.03.tar.gz
11+
RUN R -e 'library(BiocInstaller);biocLite(c("Rcpp","RcppArmadillo","biomaRt"),ask=FALSE)'
12+
RUN R CMD INSTALL /speedSage_1.03.tar.gz

Dockerfile~

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM arcolombo/arkasgithublayer:v1
2+
COPY /runScripts /bin
3+
COPY /arkasAnalysisBaseSpace /arkasAnalysisBaseSpace
4+
COPY /arkasBasespace /arkasBasespace
5+
COPY /outputReport /outputReport
6+
COPY /Rccdashboard /Rccdashboard
7+
RUN R CMD INSTALL /Rccdashboard
8+
RUN R CMD INSTALL /arkasAnalysisBaseSpace
9+
RUN R CMD INSTALL /arkasBasespace
10+
COPY /speedSage_1.03.tar.gz /speedSage_1.03.tar.gz
11+
RUN R -e 'library(BiocInstaller);biocLite(c("Rcpp","RcppArmadillo"),ask=FALSE)'
12+
RUN R CMD INSTALL /speedSage_1.03.tar.gz

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Arkas BaseSpace Application
2+
the arkasBasespace library parses the single node json, handling multi-custom fasta upload appresults, multi control appResults, and multi comparisons appResults.
3+
4+
#arkasBasespace
5+
arkasBasespace in the analysis function will contain more scripts not related to quantifying on the cloud , but analyzing on the cloud, this arkasBasespace R package is a superset, and should be the final R package for cloud computing.
6+
7+
#Docker Container
8+
this Dockerfile currently builds arcolombo/arkasanalysis:v2 FROM arcolombo/arkasgithublayer:v1
9+
10+
#steps for revising this package.
11+
If you need to revise parts of the package, edit the libraries in this directory and rebuild arcolombo/arkasanalysisbasespace:v1. this builds ontop of githublayers. so you don't need to re-install R packages or enviroment package dependencies. only need to edit and re-install the last layer specific to arkas.
12+
13+
#updating the transcriptomes needs documentation
14+
add steps on maintaining here.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Package: EnsDbLite.Hsapiens.84
2+
Title: Ensembl-based annotation package
3+
Description: Lightweight Ensembl transcript annotations
4+
Version: 1.0
5+
Author: .
6+
Maintainer: .<[email protected]>
7+
Depends: TxDbLite
8+
Imports: GenomicFeatures, RSQLite
9+
License: Artistic-2.0
10+
organism: Homo sapiens
11+
species: Homo sapiens
12+
provider: Ensembl
13+
provider_version: GRCh38
14+
release_date: Tue Apr 12 13:53:44 2016
15+
resource_url: ftp://ftp.ensembl.org/pub/release-GRCh38
16+
biocViews: AnnotationData, EnsDbLite, Homo_sapiens
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
##import(AnnotationDbi)
2+
import(GenomicFeatures)
3+
import(ensembldb)
4+
5+
### Don't export EnsDbLite.Hsapiens.84 (the object defined in this
6+
### package): it is created and dynamically exported at load time (refer
7+
### to R/zzz.R for the details).
8+
9+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
###
2+
### Load any db objects whenever the package is loaded.
3+
###
4+
.onLoad <- function(libname, pkgname)
5+
{
6+
ns <- asNamespace(pkgname)
7+
path <- system.file("extdata", package=pkgname, lib.loc=libname)
8+
files <- dir(path)
9+
for(i in seq_len(length(files))){
10+
# db <- EnsDbLite(system.file("extdata", files[[i]], package=pkgname,
11+
# lib.loc=libname))
12+
db<-EnsDbLite(files[[i]],path)
13+
objname <- sub(".sqlite$","",files[[i]])
14+
assign(objname, db, envir=ns)
15+
namespaceExport(ns, objname)
16+
}
17+
}
Binary file not shown.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
\name{EnsDbLite.Hsapiens.84}
2+
\docType{package}
3+
4+
\alias{EnsDbLite.Hsapiens.84-package}
5+
\alias{EnsDbLite.Hsapiens.84}
6+
\alias{EnsDbLite.Hsapiens.84}
7+
8+
9+
\title{Ensembl-based annotation package}
10+
11+
\description{
12+
This package loads an SQL connection to a database containing
13+
annotations from Ensembl. For examples and help on functions see the
14+
help pages from the \code{ensembldb} package!
15+
}
16+
17+
\note{
18+
This data package was made from resources at Ensembl on
19+
Tue Apr 12 13:53:44 2016 and based on the GRCh38
20+
}
21+
22+
\author{.}
23+
24+
25+
26+
\examples{
27+
## load the library
28+
##library(EnsDbLite.Hsapiens.84)
29+
## list the contents that are loaded into memory
30+
ls('package:EnsDbLite.Hsapiens.84')
31+
## show the db object that is loaded by calling it's name
32+
EnsDbLite.Hsapiens.84
33+
34+
## for more examples see the ensembldb package.
35+
36+
37+
}
38+
39+
\keyword{package}
40+
\keyword{data}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Package: EnsDbLite.Mmusculus.84
2+
Title: Ensembl-based annotation package
3+
Description: Lightweight Ensembl transcript annotations
4+
Version: 1.0
5+
Author: .
6+
Maintainer: .<[email protected]>
7+
Depends: TxDbLite
8+
Imports: GenomicFeatures, RSQLite
9+
License: Artistic-2.0
10+
organism: Mus musculus
11+
species: Mus musculus
12+
provider: Ensembl
13+
provider_version: GRCm38
14+
release_date: Wed Apr 20 15:33:50 2016
15+
resource_url: ftp://ftp.ensembl.org/pub/release-GRCm38
16+
biocViews: AnnotationData, EnsDbLite, Mus_musculus
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
##import(AnnotationDbi)
2+
import(GenomicFeatures)
3+
import(ensembldb)
4+
5+
### Don't export EnsDbLite.Mmusculus.84 (the object defined in this
6+
### package): it is created and dynamically exported at load time (refer
7+
### to R/zzz.R for the details).
8+
9+

0 commit comments

Comments
 (0)