Skip to content

Commit

Permalink
add lect 1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdkorthauer committed Jan 8, 2024
1 parent 8b12776 commit 44bcc5a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 19 deletions.
14 changes: 13 additions & 1 deletion lectures.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,19 @@ if (nrow(cmdat) >0){
pdf_exists <- grepl("*.pdf", cdat$pdf)
html_exists <- grepl("*.html", cdat$html)
if (length(html_exists) == 0){
if (length(pdf_exists) > 0){
html_exists <- rep(FALSE, length(pdf_exists))
}
}
if (length(pdf_exists) == 0){
if (length(html_exists) > 0){
pdf_exists <- rep(FALSE, length(html_exists))
}
}
# Insert placeholder link to notes
#cdat$notes[pdf_exists] <-
# str_replace(cdat$notes[which(pdf_exists)],
Expand Down
2 changes: 1 addition & 1 deletion lectures.html
Original file line number Diff line number Diff line change
Expand Up @@ -2567,7 +2567,7 @@ <h3 id="class-meetings-and-schedule">Class meetings and schedule</h3>
<a href="https://stat540-ubc.github.io/syllabus.html">1</a>
</td>
<td style="text-align:left;">
Lecture 1: Course intro; Molecular biology primer
<a href="https://github.com/STAT540-UBC/lectures/raw/main/lect01-intro.pdf">Lecture 1</a>: Course intro; Molecular biology primer
</td>
<td style="text-align:left;">
Keegan
Expand Down
Loading

0 comments on commit 44bcc5a

Please sign in to comment.