Skip to content

Commit

Permalink
remaking intro slides for the new calendar of GDK workshops
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleSoraggi committed Sep 18, 2024
1 parent d0c8730 commit c0baf3a
Show file tree
Hide file tree
Showing 8 changed files with 1,577 additions and 23 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,20 @@ jobs:
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Install R
uses: r-lib/actions/setup-r@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Set up jupyterlab and jupyterquiz
run: pip install jupyterlab jupyterquiz


# - name: Install R
# uses: r-lib/actions/setup-r@v2

- name: Install R Dependencies
uses: r-lib/actions/setup-renv@v2
# - name: Install R Dependencies
# uses: r-lib/actions/setup-renv@v2


# - name: Install pandoc
Expand Down
7 changes: 7 additions & 0 deletions resources/Slides/Introduction/Removed_for_now.qmd.backup
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
```{python}
#| echo: false
from jupyterquiz import display_quiz
git_url='https://raw.githubusercontent.com/hds-sandbox/scverse-2024-workshop/main/Questions/quiz00.json'
display_quiz(git_url, 1, shuffle_answers=True)
```

## Access from VSCode

An **IDE** (Integrated Development Environment) is an interface from which you can edit files, use the terminal, write code. You might now IDEs such as Rstudio (very dedicated to R and python) and jupyterlab (for basically any language).
Expand Down
Binary file added resources/Slides/Introduction/img/account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Slides/Introduction/img/complexTree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions resources/Slides/Introduction/questions/paths copy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[
{
"question": "Which paths are correct in the file system above?",
"type": "many_choice",
"answers": [
{
"answer": "/home/project/",
"correct": false,
"feedback": "`project` is not in the home directory"
},
{
"answer": "/home/username/coolProject",
"correct": true,
"feedback": "Yes!"
},
{
"answer": "/",
"correct": true,
"feedback": "The very root directory!"
},
{
"answer": "/project/coolProject/data/human.bam",
"correct": false,
"feedback": "No, you do not know from which root directory this path starts"
}
]
}
]
Loading

0 comments on commit c0baf3a

Please sign in to comment.