Skip to content

Commit 9732cf2

Browse files
committed
Initial commit
0 parents  commit 9732cf2

25 files changed

+2949
-0
lines changed

DESCRIPTION

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Package: ShinyGATOM
2+
Title: Shiny GATOM
3+
Version: 0.0.0.9000
4+
Authors@R:
5+
person("Mariia", "Emelianova", , "[email protected]", role = c("aut", "cre"))
6+
Description: A web-service for integrated network analysis of transcriptional and metabolic data.
7+
License: file LICENSE
8+
Encoding: UTF-8
9+
Roxygen: list(markdown = TRUE)
10+
RoxygenNote: 7.1.2
11+
Imports:
12+
BioNet,
13+
data.table,
14+
devtools,
15+
igraph,
16+
logging,
17+
markdown,
18+
mwcsr,
19+
parallel,
20+
pryr,
21+
RCurl,
22+
shiny

LICENCE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Alexey Sergushichev
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
all: www/d3.v3.min.js
2+
3+
www/d3.v3.min.js:
4+
wget http://d3js.org/d3.v3.min.js -O www/d3.v3.min.js

NAMESPACE

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Generated by roxygen2: do not edit by hand
2+
3+
import("BioNet")
4+
import(RCurl)
5+
import(data.table)
6+
import(gatom)
7+
import(igraph)
8+
import(markdown)
9+
import(mwcsr)
10+
import(parallel)
11+
import(pryr)
12+
import(shiny)

R/app.R

+1,321
Large diffs are not rendered by default.

R/config.R

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
uploaderPath <- "/mnt/data/upload"
2+
3+
## PATHS
4+
path.to.kegg.network <- "/home/masha/Research/RCode/RShiny/data/network.kegg.rds"
5+
path.to.rhea.network <- "/home/masha/Research/RCode/RShiny/data/network.rhea.rds"
6+
path.to.met.kegg.db <- "/home/masha/Research/RCode/RShiny/data/met.kegg.db.rds"
7+
path.to.met.rhea.db <- "/home/masha/Research/RCode/RShiny/data/met.rhea.db.rds"
8+
path.to.org.Mm.eg.gatom.anno <- "/home/masha/Research/RCode/RShiny/data/org.Mm.eg.gatom.anno.rda"
9+
path.to.org.Hs.eg.gatom.anno <- "/home/masha/Research/RCode/RShiny/data/org.Hs.eg.gatom.anno.rda"
10+
11+
example.gene.de.path <- "/home/masha/Research/RCode/RShiny/data/Ctrl.vs.MandLPSandIFNg.gene.de.tsv"
12+
example.met.de.path <- "/home/masha/Research/RCode/RShiny/data/Ctrl.vs.MandLPSandIFNg.met.de.tsv"

0 commit comments

Comments
 (0)