Skip to content

Commit

Permalink
Fixing bug in report.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrostrusso committed Jan 17, 2019
1 parent 7de4337 commit 3d696b7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions inst/report/report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,15 @@ cat("#", title, "{.tabset}")
```

```{r echo=FALSE}
height <- 1.1*nrow(cem@enrichment$nes)
height <- ifelse(height == 0, 7, height)
if(is.null(cem@enrichment$nes)){
height <- 7
}else{
height <- 1.1*nrow(cem@enrichment$nes)
height <- ifelse(height == 0, 7, height)
}
#height <- 1.1*nrow(cem@enrichment$nes)
#height <- ifelse(height == 0, 7, height)
```

## Gene Set Enrichment Analysis
Expand Down

0 comments on commit 3d696b7

Please sign in to comment.