Skip to content

Commit

Permalink
partially move to QFeatures in the Vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
sneumann committed Jan 30, 2025
1 parent a6d7778 commit b678591
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vignettes/discoveringregulatedmetabolitefamilies.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pcaDimensionTwo <<- 2
resultObj <- calcPlotPCAscores(
pcaObj = pca,
dataList = project,
dataList = dataList, #project,
filterObj = filterObj,
pcaDimensionOne = pcaDimensionOne,
pcaDimensionTwo = pcaDimensionTwo,
Expand All @@ -108,7 +108,7 @@ pcaDimensionTwo <<- 2
resultObj <- calcPlotPCAloadings(
pcaObj = pca,
dataList = project,
dataList = dataList, #project,
filter = filterObj,
pcaDimensionOne = pcaDimensionOne,
pcaDimensionTwo = pcaDimensionTwo,
Expand Down Expand Up @@ -136,9 +136,9 @@ HCA on MS2 in Figure \@ref(fig:hca).
```{r hca, fig.cap="HCA on MS2.", echo=FALSE}
if (FALSE) {
p <- calcPlotDendrogram_plotly(dataList=project,
p <- calcPlotDendrogram_plotly(dataList=dataList, #project,
filterObj=filterObj,
clusterDataList=project,
clusterDataList=dataList, #project,
distanceMeasure = "Jaccard",
showClusterLabels=FALSE,
hcaPrecursorLabels="m/z / RT",
Expand All @@ -156,7 +156,7 @@ load(fileName)
fileName <- system.file("extdata/testdata/hcaFilter.Rdata", package = "MetFamily")
load(fileName)
returnObj <- calcPlotDendrogram(dataList=project,
returnObj <- calcPlotDendrogram(dataList=dataList, #project,
filter=filter,
clusterDataList=clusterDataList,
annoPresentAnnotationsList = annoPresentAnnotationsList ,
Expand Down

0 comments on commit b678591

Please sign in to comment.