Skip to content

Commit

Permalink
small fixes for skeleton preparing #285
Browse files Browse the repository at this point in the history
  • Loading branch information
maxheld83 committed Sep 14, 2021
1 parent d1b1f46 commit e27184c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions inst/rmarkdown/templates/bericht/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ report_metacheckable(params$dois, lang = lang)
```

```{r filter, include = FALSE}
dois <- params$doi[is_metacheckable(params$doi)]
dois <- params$dois[is_metacheckable(params$dois)]
enough <- length(dois) > 1
```

Expand All @@ -39,7 +39,7 @@ cat("Es verbleiben nicht genügend DOIs für einen Test.")

Die folgende Analyse bezieht sich nur auf die verbleibenden **`r length(dois)`** DOIs.

```{r import, eval = enough, include = FALSE}
```{r import, include = FALSE}
cr <- get_cr_md(dois)
mcres <- cr_compliance_overview(cr)
```
Expand Down
4 changes: 2 additions & 2 deletions inst/rmarkdown/templates/report/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ report_metacheckable(params$dois, lang = lang)
```

```{r filter, include = FALSE}
dois <- params$doi[is_metacheckable(params$doi)]
dois <- params$dois[is_metacheckable(params$dois)]
enough <- length(dois) > 1
```

Expand All @@ -37,7 +37,7 @@ cat("Not enough DOIs remain to run the test.")

The following analysis covers only the remaining **`r length(dois)`** DOIs.

```{r import, eval = enough, include = FALSE}
```{r import, include = FALSE}
cr <- get_cr_md(dois)
mcres <- cr_compliance_overview(cr)
```
Expand Down

0 comments on commit e27184c

Please sign in to comment.