Skip to content

Commit

Permalink
Added several objects saved from the running shiny app
Browse files Browse the repository at this point in the history
  • Loading branch information
sneumann committed Mar 11, 2024
1 parent 625e593 commit 6250b40
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
Binary file added inst/extdata/testdata/clusterDataList.Rdata
Binary file not shown.
Binary file added inst/extdata/testdata/filterObj.Rdata
Binary file not shown.
Binary file added inst/extdata/testdata/hcaFilter.Rdata
Binary file not shown.
Binary file not shown.
10 changes: 7 additions & 3 deletions vignettes/discoveringregulatedmetabolitefamilies.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ We can filter the data to remove low quality data points
PCA on MS1 in Figure \@ref(fig:pca).

```{r pca, fig.cap="PCA of MS1.", echo=FALSE}
load("/home/sneumann/src/MetFamily/inst/extdata/testdata/filterObj.Rdata")
fileName <- system.file("extdata/testdata/filterObj.Rdata", package = "MetFamily")
load(fileName)
pca <- calculatePCA(dataList=project,
filterObj=filterObj,
Expand Down Expand Up @@ -131,8 +132,11 @@ p <- calcPlotDendrogram_plotly(dataList=project,
heatmapProportion)
}
load("/home/sneumann/src/MetFamily/inst/extdata/testdata/clusterDataList.Rdata")
load("/home/sneumann/src/MetFamily/inst/extdata/testdata/hcaFilter.Rdata")
fileName <- system.file("extdata/testdata/clusterDataList.Rdata", package = "MetFamily")
load(fileName)
fileName <- system.file("extdata/testdata/hcaFilter.Rdata", package = "MetFamily")
load(fileName)
returnObj <- calcPlotDendrogram(dataList=project,
filter=filter,
clusterDataList=clusterDataList,
Expand Down

0 comments on commit 6250b40

Please sign in to comment.