-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.qmd
156 lines (108 loc) · 2.93 KB
/
template.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
---
format:
aagi-docx: default
execute:
echo: false
knitr:
opts_chunk:
fig.path: figures/
params:
uni: CU
pri_bio: Your.Name
project_num: AAA--BBB
bibliography: references.bib
date: "`r Sys.Date()`"
date-format: long
---
```{r}
#| include: false
if (params$uni == "CU") {
Project_Lead = "Curtin University -- Prof Mark Gibberd, Dr Julia Easton, Prof Adam Sparks"
} else if (params$uni == "UA") {
Project_Lead = "University of Adelaide -- Dr Julian Taylor, Dr Olena Kravchuck"
} else {
Project_Lead = "University of Queensland -- Prof Scott Chapman, Emeritus Prof Kaye Basford"
}
```
```{r}
#| include: false
#| label: email for project lead
if (params$uni == "CU") {
email = "cbada@curtin.edu.au"
} else if (params$uni == "UA") {
email = paste(params$pri_bio, "@adelaide.edu.au", sep = "")
} else {
email = paste(params$pri_bio, "@uq.edu.au")
}
```
```{r}
#| label: Project number
#| include: false
Pro_Num = params$project_num
```
```{r}
#| label: title param
#| include: false
if (params$uni == "CU") {
university <- "Curtin University"
} else if (params$uni == "UA") {
university <- "University of Adelaide"
} else {
university <- "University of Queensland"
}
```
---
title: "Analytics for the Australian Grains Industry - `r university` (AAGI-`r params$uni`) \n Technical Report Series: 123"
subtitle: "Descriptive title for report \n Report for `r Pro_Num`"
author:
- Adam Sparks
- "Email: `r email`"
- "Project Leads: `r Project_Lead`"
---
```{r}
#| label: load
#| message: false
library(ggplot2)
library(AAGIThemes)
library(flextable)
library(dplyr)
# set ggplot2 theme
theme_set(theme_aagi())
# set flextable theme
set_flextable_defaults(
theme_fun = theme_ft_aagi
)
```
\newpage
# Executive summary
What was provided by AAGI and the main results?
# Introduction
- Goals of the research project.
- Background, context and rationale behind the research.
# Experimental/Trial Design
- Trial design type and layout.
- Treatments, number of replicates.
- Specific considerations for small plots, glasshouse, genetics, breeding trials, OFE projects, or bioinformatics.
# Exploratory Data Analysis and Data Visualisation
- Interpretation of plots and data.
- Rationale behind specific methods used.
# Methods
- Detailed description of the procedures and methodologies used.
- Include versions/commits on developed pipelines, scripts, and input/output details if applicable.
# Analysis (if separate from Methods)
Approach taken for data analysis.
# Results and Discussion
Findings and their implications.
# Metadata and Datasets (Optional)
- md5sums for input data and outputs (if applicable).
- Git commit numbers and tags.
- Location of outputs (FAIR Data).
- DOI for AAGI outputs.
# Map (Location, Optional)
Include if relevant to the project.
# References (Optional)
Cited works and literature. @Box1976
::: {#refs}
:::
# Appendix (Optional)
Additional supporting information.