Skip to content

Commit

Permalink
make sure formatting is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
allyhawkins committed Jul 8, 2024
1 parent a6534a9 commit be1d5b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
16 changes: 9 additions & 7 deletions templates/qc_report/celltypes_supplemental_report.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -396,13 +396,15 @@ if (!has_multiplex) {
print_sample_metadata(processed_meta)
} else {
# otherwise print out an info box that no sample metadata will be displayed
knitr::asis_output(glue::glue("
<div class=\"alert alert-info\">
This library is multiplexed and contains data from more than one sample.
Demultiplexing has not been performed, so sample metadata will not be displayed.
</div>
"))
knitr::asis_output(
glue::glue("
<div class=\"alert alert-info\">
This library is multiplexed and contains data from more than one sample.
Demultiplexing has not been performed, so sample metadata will not be displayed.
</div>
")
)
}
```

Expand Down
10 changes: 5 additions & 5 deletions templates/qc_report/main_qc_report.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,12 @@ if (!has_multiplex) {
# otherwise print out an info box that no sample metadata will be displayed
knitr::asis_output(
glue::glue("
<div class=\"alert alert-info\">
<div class=\"alert alert-info\">
This library is multiplexed and contains data from more than one sample.
Demultiplexing has not been performed, so sample metadata will not be displayed.
</div>
")
This library is multiplexed and contains data from more than one sample.
Demultiplexing has not been performed, so sample metadata will not be displayed.
</div>
")
)
}
```
Expand Down

0 comments on commit be1d5b0

Please sign in to comment.