- name: Group name, Institute name, University name
- name: 'Second Author Fullname'
orcid: 1234-1234-1234-1234
affiliations:
- name: Group name, Institute name, University name
code-fold: true
---
<!-- Delete the instructions section after copying this template !! -->
# Instructions for editing
This Publication Page is meant to only contain information specific to the publication it's describing. Supplemental Methods that may be reused for another publication are supposed to go to the respective Experiment Page.
Possible examples for non-reuseable information that could go on this page:
- Supplemental results
- Supplemental figures
- Download links to supplemental videos, e.g. on Zenodo
- Data processing methods that are specific to the publication's research question
Programming code for pulling the information on samples or individual scans is at the bottom of the page. Editing the samples required happens not here, but in the Input_mice.csv file. Do not edit the code below the demarcated line, to avoid breaking the functionality.
# Supplemental Results
Here you can enter information about your results in text (with markdown format)
[https://gorka.science](my link)
<!-- Do not edit below this line !! -->
## Links to protocol pages
```{r}
# | warning: false
library(dplyr)
# This code chunk gathers the rows from tables specified in the inputs
inputs <- read.csv(file = 'input_mice.csv')
# Use data type and facility information to find the path to the relevant protocols
folders <- unique(cbind(inputs$Data_type,inputs$Facility_name_mon_YYYY)) # find table's unique variations of experiment type and facility
paths <- as.data.frame(file.path(apply(folders, 1, paste, collapse = .Platform$file.sep), 'protocols')) #put together the paths
colnames(paths) <- 'Protocols'
# Add HTML code so that it becomes a clickable link