Skip to content

Commit

Permalink
allow overriding LOs at module level
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Dec 9, 2024
1 parent 4740946 commit af8807f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions _layouts/learning-pathway.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,17 @@ <h3 id="st-{{ section.section | slugify }}">{{ section.section }}</h3>
<details>
<summary>Learning Objectives</summary>
<ul>
{% if section.learning_objectives %}
{% for lo in section.learning_objectives %}
<li>{{ lo }}</li>
{% endfor %}
{% else %}
{% for material in material_list %}
{% for lo in material.objectives %}
<li>{{ lo }}</li>
{% endfor %}
{% endfor %}
{% endif %}
</ul>
</details>
{% include _includes/tutorial_list.html sub=material_list %}
Expand Down
17 changes: 17 additions & 0 deletions bin/schema-learning-pathway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,23 @@ mapping:
required: true
description:
type: str
learning_objectives:
type: seq
sequence:
- type: str
required: true
description: |
List of Specific, Measurable, Achievable, Relevant, and Time-bound (SMART) learning objectives for the tutorial
A learning objective is a single sentence describing what a learner will be able to do once they have done the tutorial. Generally it is best to follow a 2C or 3C learning objective such as:
- Compute (Skill)
- multiple whole genome assemblies (Objective)
- in such a way to develop big data processing skills (Result)
_examples:
- Understand the basic concepts behind phylogenetic trees, as applied to *Mycobacterium tuberculosis*
- Explore Biodiversity data with taxonomic, temporal and geographical informations
- Generate a DotPlot emulating the original paper using a different analysis tool
tutorials:
type: seq
sequence:
Expand Down
2 changes: 1 addition & 1 deletion bin/schema-tutorial.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ mapping:
- type: str
required: true
description: |
list of learning objectives for the tutorial
List of Specific, Measurable, Achievable, Relevant, and Time-bound (SMART) learning objectives for the tutorial
A learning objective is a single sentence describing what a learner will be able to do once they have done the tutorial. Generally it is best to follow a 2C or 3C learning objective such as:
Expand Down

0 comments on commit af8807f

Please sign in to comment.