mirror of
https://github.com/gladstone-institutes/Bioinformatics-Workshops.git
synced 2025-11-30 09:45:43 -08:00
august update, closes #26
This commit is contained in:
parent
69b280939d
commit
ed207952eb
7 changed files with 805 additions and 12783 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -2,7 +2,8 @@
|
|||
title: "Introduction to R Data Analysis"
|
||||
subtitle: "Part 1"
|
||||
author: "Natalie Gill"
|
||||
date: "May 5th, 2025"
|
||||
institute: "Gladstone Bioinformatics Core"
|
||||
date: "August 21st, 2025"
|
||||
knit: (function(input, ...) {
|
||||
rmarkdown::render(
|
||||
input,
|
||||
|
|
@ -487,17 +488,18 @@ packages
|
|||
## Workshop survey
|
||||
- Please fill out our [workshop survey](https://www.surveymonkey.com/r/bioinfo-training) so we can continue to improve these workshops
|
||||
|
||||
## Upcoming Workshops
|
||||
|
||||
[Introduction to RNA-Seq](https://gladstone.org/events/introduction-rna-seq-0)
|
||||
May 12-May 13, 2025 1:00-4:00pm PDT
|
||||
|
||||
|
||||
[Intermediate RNA-Seq Analysis Using R](https://gladstone.org/events/intermediate-rna-seq-analysis-using-r-7)
|
||||
May 19, 2025 1:00-4:00pm PDT
|
||||
|
||||
|
||||
- Check [this link](https://gladstone.org/events?series=data-science-training-program) at for the full schedule
|
||||
## Upcoming Workshops {.small}
|
||||
|
||||
**Introduction to Statistics, Experimental Design, and Hypothesis Testing**
|
||||
August 25 - August 26, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Introduction to RNA-Seq Analysis**
|
||||
September 22-September 23, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Introduction to Linear Mixed Effects Models**
|
||||
September 29-September 30, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Working on Wynton**
|
||||
October 2-October 3, 2025 9:00am-12:00pm PDT
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
title: "Introduction to R Data Analysis"
|
||||
subtitle: "Part 2"
|
||||
author: "Natalie Gill"
|
||||
date: "May 6th, 2025"
|
||||
institute: "Gladstone Bioinformatics Core"
|
||||
date: "August 22nd, 2025"
|
||||
knit: (function(input, ...) {
|
||||
rmarkdown::render(
|
||||
input,
|
||||
|
|
@ -303,17 +304,16 @@ Code templates can be used to avoid typing the same code over and over again.
|
|||
## Workshop survey
|
||||
- Please fill out our [workshop survey](https://www.surveymonkey.com/r/bioinfo-training) so we can continue to improve these workshops
|
||||
|
||||
## Upcoming Workshops
|
||||
|
||||
[Introduction to RNA-Seq](https://gladstone.org/events/introduction-rna-seq-0)
|
||||
May 12-May 13, 2025 1:00-4:00pm PDT
|
||||
|
||||
[Intermediate RNA-Seq Analysis Using R](https://gladstone.org/events/intermediate-rna-seq-analysis-using-r-7)
|
||||
May 19, 2025 1:00-4:00pm PDT
|
||||
|
||||
|
||||
- Check [this link](https://gladstone.org/events?series=data-science-training-program) at for the full schedule
|
||||
## Upcoming Workshops {.small}
|
||||
|
||||
**Introduction to Statistics, Experimental Design, and Hypothesis Testing**
|
||||
August 25 - August 26, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Introduction to RNA-Seq Analysis**
|
||||
September 22-September 23, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Introduction to Linear Mixed Effects Models**
|
||||
September 29-September 30, 2025 1:00-3:00pm PDT
|
||||
|
||||
**Working on Wynton**
|
||||
October 2-October 3, 2025 9:00am-12:00pm PDT
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ Please complete the following steps (must be done in this order). If you already
|
|||
4. [Install required packages](#install-required-packages)
|
||||
5. [Run verification test](#run-verification-test)
|
||||
|
||||
Please consult the links provided for additional tips, and feel free to reach out for help by email [me](mailto:natalie.elphick@gladstone.ucsf.edu) if you get stuck.
|
||||
Please consult the links provided for additional tips, and feel free to reach out for help by email [me](mailto:natalie.gill@gladstone.ucsf.edu) if you get stuck.
|
||||
|
||||
## Install R
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
name: lesson_0
|
||||
title: lesson_0
|
||||
username: natalie-elphick
|
||||
account: natalie-elphick
|
||||
server: shinyapps.io
|
||||
hostUrl: https://api.shinyapps.io/v1
|
||||
appId: 10952169
|
||||
bundleId: 10787256
|
||||
url: https://natalie-elphick.shinyapps.io/lesson_0/
|
||||
version: 1
|
||||
asMultiple: FALSE
|
||||
asStatic: FALSE
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/* Set font size and alignment for the message */
|
||||
.bottom-message {
|
||||
font-size: 0.8em !important;
|
||||
|
|
@ -21,8 +20,6 @@
|
|||
text-align: left !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Add horizontal scrolling to all code outputs */
|
||||
.reveal pre code.output {
|
||||
white-space: pre !important;
|
||||
|
|
@ -33,68 +30,109 @@ pre, code, kbd, samp {
|
|||
font-family: "Courier New", Courier, monospace;
|
||||
}
|
||||
|
||||
|
||||
/* Add horizontal scrolling to all code chunks */
|
||||
.reveal pre code {
|
||||
white-space: pre !important;
|
||||
overflow-x: auto !important;
|
||||
}
|
||||
/* Bold slide titles and change color */
|
||||
.reveal h2 {
|
||||
font-weight: bold !important;
|
||||
color: #0072B2;
|
||||
}
|
||||
/* Bold slide titles and change color */
|
||||
|
||||
/* Bold slide titles and change color - H1 */
|
||||
.reveal h1 {
|
||||
font-weight: bold !important;
|
||||
color: #0072B2;
|
||||
font-size: 2em !important; /* Reduced from default ~2.5em */
|
||||
}
|
||||
|
||||
/* Bold slide titles and change color - H2 */
|
||||
.reveal h2 {
|
||||
font-weight: bold !important;
|
||||
color: #0072B2;
|
||||
font-size: 1.3em !important; /* Reduced from default ~2em */
|
||||
}
|
||||
|
||||
/* Additional header sizes for consistency */
|
||||
.reveal h3 {
|
||||
font-size: 1.5em !important; /* Reduced from default ~1.55em */
|
||||
}
|
||||
|
||||
.reveal h4 {
|
||||
font-size: 1em !important; /* Reduced from default ~1.3em */
|
||||
}
|
||||
|
||||
.reveal h5 {
|
||||
font-size: 1em !important; /* Reduced from default ~1.15em */
|
||||
}
|
||||
|
||||
.reveal h6 {
|
||||
font-size: 0.9em !important; /* Reduced from default ~1em */
|
||||
}
|
||||
|
||||
/* First slide specific styles */
|
||||
.reveal .slides>section:first-child h1 {
|
||||
font-weight: bold !important;
|
||||
color: #0072B2;
|
||||
font-size: 1.5em !important; /* Keep consistent with new H1 size */
|
||||
}
|
||||
|
||||
.reveal .slides>section:first-child h2 {
|
||||
color: #333;
|
||||
font-weight: normal !important;
|
||||
}
|
||||
font-size: 1em !important; /* Keep consistent with new H2 size */
|
||||
}
|
||||
|
||||
.reveal .slides>section:first-child h3 {
|
||||
color: #333;
|
||||
font-weight: normal !important;
|
||||
font-size: 1em !important; /* Keep consistent with new H2 size */
|
||||
}
|
||||
.reveal .slides>section:first-child h4 {
|
||||
color: #333;
|
||||
font-weight: normal !important;
|
||||
font-size: 1em !important; /* Keep consistent with new H2 size */
|
||||
}
|
||||
|
||||
|
||||
/* Custom slide title */
|
||||
.my-title-slide h1 {
|
||||
font-weight: bold;
|
||||
color: #0072B2;
|
||||
}
|
||||
.my-title-slide h2 {
|
||||
color: #333;
|
||||
font-weight: normal !important;
|
||||
font-size: 2em !important; /* Keep consistent with new H1 size */
|
||||
}
|
||||
|
||||
|
||||
|
||||
.reveal .slides>section:first-child h1 {
|
||||
font-weight: bold !important;
|
||||
color: #0072B2;
|
||||
.my-title-slide h2 {
|
||||
color: #333;
|
||||
font-weight: normal !important;
|
||||
font-size: 1.6em !important; /* Keep consistent with new H2 size */
|
||||
}
|
||||
|
||||
/* Increase the spacing between list items */
|
||||
.reveal p {
|
||||
text-align: left;
|
||||
margin-left: 20px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.reveal ul {
|
||||
display: block;
|
||||
margin-left: 75px !important;
|
||||
margin-right: 50px !important;
|
||||
}
|
||||
|
||||
.reveal ol {
|
||||
display: block;
|
||||
margin-left: 75px !important;
|
||||
margin-right: 50px !important;
|
||||
}
|
||||
|
||||
/* Increase the spacing between unordered list items */
|
||||
.reveal ul li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
/* Increase the spacing between ordered list items */
|
||||
.reveal ol li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
|
||||
/* Make images fit in the slides, remove border, shadow and center align*/
|
||||
.reveal img {
|
||||
max-width: 100% !important;
|
||||
|
|
@ -130,7 +168,7 @@ small {
|
|||
border: 1px solid black !important;
|
||||
}
|
||||
|
||||
/* Chage link color to sky blue */
|
||||
/* Change link color to sky blue */
|
||||
.reveal a {
|
||||
color: #0c74dc;
|
||||
}
|
||||
|
|
@ -139,3 +177,7 @@ small {
|
|||
.reveal a:hover {
|
||||
color: #0072B2 !important;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: 70%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue