Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
TuomasBorman committed Nov 4, 2024
1 parent 2e22e00 commit 3344b54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vignettes/articles/minimalgut.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ tse <- addStepwiseDivergence(
method = "bray",
group = "StudyIdentifier",
time.interval = 1,
time.col = "Time_hr_num",
time.col = "Time.hr",
name = "divergence_from_previous_step",
name.time = "time_from_previous_step"
)
Expand Down
7 changes: 4 additions & 3 deletions vignettes/miaTime.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ comparing them to the first time point.
data(hitchip1006)
tse <- hitchip1006
res <- getBaselineDivergence(tse, group = "sample", name = "baseline")
res <- getBaselineDivergence(
tse, time.col = "time", group = "sample", name = "baseline")
res |> head()
```

Expand All @@ -86,13 +87,13 @@ the same subject.
```{r}
#| label: time_divergence
tse <- addStepwiseDivergence(tse)
tse <- addStepwiseDivergence(tse, time.col = "time")
colData(tse)
```

## Visualize time series

We can visualile time series data with `r BiocStyle::Biocpkg("miaViz")`. Below,
We can visualize time series data with `r BiocStyle::Biocpkg("miaViz")`. Below,
we visualize 2 most abundant taxa.

```{r}
Expand Down

0 comments on commit 3344b54

Please sign in to comment.