Skip to content

Commit 1bd34a7

Browse files
committed
source commit: 7f47ce9
0 parents  commit 1bd34a7

File tree

115 files changed

+18571
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+18571
-0
lines changed

CODE_OF_CONDUCT.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "Contributor Code of Conduct"
3+
---
4+
5+
As contributors and maintainers of this project,
6+
we pledge to follow the [The Epiverse-TRACE Code of Conduct][coc].
7+
8+
<!--
9+
Instances of abusive, harassing, or otherwise unacceptable behavior
10+
may be reported by following our [reporting guidelines][coc-reporting].
11+
-->
12+
13+
[coc-reporting]: https://forms.gle/guKqVXPk6K43jPn59
14+
[coc]: https://github.com/epiverse-trace/.github/blob/main/CODE_OF_CONDUCT.md
15+

LICENSE.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
title: "Licenses"
3+
---
4+
5+
## Instructional Material
6+
7+
The tutorials in this repository are developed by Epiverse-TRACE, based on the [lesson template from the Carpentries](https://github.com/carpentries/workbench-template-rmd) (template under CC BY license).
8+
9+
All Epiverse-TRACE
10+
instructional material is made available under the [Creative Commons
11+
Attribution license][cc-by-human]. The following is a human-readable summary of
12+
(and not a substitute for) the [full legal text of the CC BY 4.0
13+
license][cc-by-legal].
14+
15+
You are free:
16+
17+
- to **Share**---copy and redistribute the material in any medium or format
18+
- to **Adapt**---remix, transform, and build upon the material
19+
20+
for any purpose, even commercially.
21+
22+
The licensor cannot revoke these freedoms as long as you follow the license
23+
terms.
24+
25+
Under the following terms:
26+
27+
- **Attribution**---You must give appropriate credit (mentioning that your work
28+
is derived from work that is Copyright (c) Epiverse-TRACE, where
29+
practical, linking to <https://epiverse-trace.github.io/>), provide a [link to the
30+
license][cc-by-human], and indicate if changes were made. You may do so in
31+
any reasonable manner, but not in any way that suggests the licensor endorses
32+
you or your use.
33+
34+
- **No additional restrictions**---You may not apply legal terms or
35+
technological measures that legally restrict others from doing anything the
36+
license permits. With the understanding that:
37+
38+
Notices:
39+
40+
* You do not have to comply with the license for elements of the material in
41+
the public domain or where your use is permitted by an applicable exception
42+
or limitation.
43+
* No warranties are given. The license may not give you all of the permissions
44+
necessary for your intended use. For example, other rights such as publicity,
45+
privacy, or moral rights may limit how you use the material.
46+
47+
## Software
48+
49+
Except where otherwise noted, the example programs and other software provided
50+
by Epiverse-TRACE are made available under the [OSI][osi]-approved [MIT
51+
license][mit-license].
52+
53+
Permission is hereby granted, free of charge, to any person obtaining a copy of
54+
this software and associated documentation files (the "Software"), to deal in
55+
the Software without restriction, including without limitation the rights to
56+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
57+
of the Software, and to permit persons to whom the Software is furnished to do
58+
so, subject to the following conditions:
59+
60+
The above copyright notice and this permission notice shall be included in all
61+
copies or substantial portions of the Software.
62+
63+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
66+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
68+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
69+
SOFTWARE.
70+
71+
[cc-by-human]: https://creativecommons.org/licenses/by/4.0/
72+
[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode
73+
[mit-license]: https://opensource.org/licenses/mit-license.html
74+
[osi]: https://opensource.org

config.yaml

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
#------------------------------------------------------------
2+
# Values for this lesson.
3+
#------------------------------------------------------------
4+
5+
# Which carpentry is this (swc, dc, lc, or cp)?
6+
# swc: Software Carpentry
7+
# dc: Data Carpentry
8+
# lc: Library Carpentry
9+
# cp: Carpentries (to use for instructor training for instance)
10+
# incubator: The Carpentries Incubator
11+
carpentry: 'epiverse-trace'
12+
13+
# Overall title for pages.
14+
title: 'Real-time analysis and forecasting for outbreak analytics with R'
15+
16+
# Date the lesson was created (YYYY-MM-DD, this is empty by default)
17+
created:
18+
19+
# Comma-separated list of keywords for the lesson
20+
keywords: 'forecasts, epidemic models, interventions'
21+
22+
# Life cycle stage of the lesson
23+
# possible values: pre-alpha, alpha, beta, stable
24+
life_cycle: 'pre-alpha'
25+
26+
# License of the lesson materials (recommended CC-BY 4.0)
27+
license: 'CC-BY 4.0'
28+
29+
# Link to the source repository for this lesson
30+
source: 'https://github.com/epiverse-trace/tutorials-middle'
31+
32+
# Default branch of your lesson
33+
branch: 'main'
34+
35+
# Who to contact if there are any issues
36+
37+
38+
# Navigation ------------------------------------------------
39+
#
40+
# Use the following menu items to specify the order of
41+
# individual pages in each dropdown section. Leave blank to
42+
# include all pages in the folder.
43+
#
44+
# Example -------------
45+
#
46+
# episodes:
47+
# - introduction.md
48+
# - first-steps.md
49+
#
50+
# learners:
51+
# - setup.md
52+
#
53+
# instructors:
54+
# - instructor-notes.md
55+
#
56+
# profiles:
57+
# - one-learner.md
58+
# - another-learner.md
59+
60+
# Order of episodes in your lesson
61+
episodes:
62+
- delays-access.Rmd
63+
- quantify-transmissibility.Rmd
64+
- delays-functions.Rmd
65+
- create-forecast.Rmd
66+
- severity-static.Rmd
67+
- superspreading-estimate.Rmd
68+
- superspreading-simulate.Rmd
69+
70+
# Information for Learners
71+
learners:
72+
73+
# Information for Instructors
74+
instructors:
75+
76+
# Learner Profiles
77+
profiles:
78+
79+
# Customisation ---------------------------------------------
80+
#
81+
# This space below is where custom yaml items (e.g. pinning
82+
# sandpaper and varnish versions) should live
83+
84+
85+
varnish: epiverse-trace/varnish@epiversetheme
86+
sandpaper: epiverse-trace/sandpaper@patch-renv-github-bug

0 commit comments

Comments
 (0)