Skip to content

Commit

Permalink
Merge pull request #13 from LUMC/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
tomkuipers1402 authored Oct 27, 2020
2 parents 23af176 + 6683cb5 commit f93da00
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 9 deletions.
2 changes: 1 addition & 1 deletion R/de_plots.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ alignmentSummaryPlot <- function(se, sort_value="None", perc=T){
#'
#' @export

complexityPlot <- function(se, group_color="None", perc, rank) {
complexityPlot <- function(se, group_color="None", perc=T, rank=1000) {
compData <- complexityData(se, rank)

p <- plot_ly(
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rocker/r-ver:3.6.1
FROM rocker/r-ver:3.6.3

# Install Ubuntu packages
RUN apt-get update && apt-get install -y \
Expand Down
Binary file modified exampleData/exampleData.zip
Binary file not shown.
35 changes: 31 additions & 4 deletions inst/src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

/*background dashboard*/
.content-wrapper, .right-side {
background-color: #f9f9f9;
background-color: #fcfcfc;
}

/*header color*/
Expand All @@ -72,7 +72,7 @@
.skin-blue .main-sidebar {
border-right-width: 15px;
border-right-style: solid;
border-image: linear-gradient(to right, #d9d9d9, #f9f9f9) 1 100%;
border-image: linear-gradient(to right, #d9d9d9, #fcfcfc) 1 100%;
}

/*navbar text color*/
Expand Down Expand Up @@ -162,7 +162,7 @@
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li>a:hover {
color: #0088cc;
background-color: #f9f9f9;
background-color: #fcfcfc;
border: 1px solid #0088cc;
border-bottom-color: transparent;
}
Expand Down Expand Up @@ -372,7 +372,7 @@ table.dataTable tr.selected td{

.modal-dialog {
top: 100px;
background-color: #f9f9f9;
background-color: #fcfcfc;
font-size: 25px;
border-radius: 20px;
border: 5px solid #0088cc;
Expand All @@ -398,3 +398,30 @@ table.dataTable tr.selected td{
}

/* --- image scroll */

/* plotly --- */

.hovertext path {
fill: #ffffff !important;
opacity: 0.90;
stroke: #0088cc !important;
stroke-linecap: round;
}
.hovertext text {
fill: #000000 !important;
}

.js-plotly-plot .plotly .main-svg {
background: none !important;
}
.js-plotly-plot .plotly .main-svg .legend .bg {
fill: none !important;
}

.js-plotly-plot .plotly:hover div[id^="modebar-"] .modebar-group {
background: none !important;
}

/* --- plotly */


2 changes: 1 addition & 1 deletion inst/src/markdown/analysisDESeq2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ se <- readCountsFromTable(data_counts, data_samples)
se <- addSamplesFromTableToSE(se, data_samples)
alignmentSummaryPlot(se)
complexityPlot(se, perc = TRUE, rank = 1000)
complexityPlot(se)
```

Expand Down
2 changes: 1 addition & 1 deletion inst/src/markdown/analysisEdgeR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ se <- readCountsFromTable(data_counts, data_samples)
se <- addSamplesFromTableToSE(se, data_samples)
alignmentSummaryPlot(se)
complexityPlot(se, perc = TRUE, rank = 1000)
complexityPlot(se)
```

Expand Down
2 changes: 1 addition & 1 deletion inst/src/markdown/analysisLimma.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ se <- readCountsFromTable(data_counts, data_samples)
se <- addSamplesFromTableToSE(se, data_samples)
alignmentSummaryPlot(se)
complexityPlot(se, perc = TRUE, rank = 1000)
complexityPlot(se)
```

Expand Down

0 comments on commit f93da00

Please sign in to comment.