Skip to content

Commit f73ee7e

Browse files
committed
fix or remove broken links
1 parent d3ec93f commit f73ee7e

8 files changed

+16
-18
lines changed

exercises/Higher-order-functions-dna-Python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ language: Python
77

88
Write a function to determine the GC-content of a DNA sequence and another
99
function to download this list of sequences from the web.
10-
[Download the data](http://www.programmingforbiologists.org/sites/programmingforbiologists.org/files/dna_sequences.csv)
10+
[Download the data]({{ site.baseurl }}/data/dna-sequences-1.txt)
1111
using your function and then use map() to calculate the value of the GC-content
1212
for all of the sequences. Print the results to the screen.
1313

exercises/Lists-nested-lists-2-Python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ language: Python
66
---
77

88
One of your collaborators has posted [a comma-delimited text
9-
file](http://www.programmingforbiologists.org/sites/programmingforbiologists.org/files/shrub_dimensions.txt)
9+
file]({{ site.baseurl }}/data/shrub-dimensions.csv)
1010
online for you to analyze. The file contains dimensions of a series of
1111
shrubs (ShrubID, Length, Width, Height) and they need you to determine
1212
their volumes. You could do this using a spreadsheet, but the project

exercises/Neon-neon-raster-R.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: NEON Raster
55
language: R
66
---
77

8-
Jane just got a job working to develop data products for [NEON](neoninc.org).
8+
Jane just got a job working to develop data products for [NEON](http://www.neonscience.org/).
99
She's got to familiarize herself with working with LiDAR data and seeks out the
1010
great 'Work with Data' [tutorial for raster data](http://neondataskills.org/lidar-data/lidar-data-rasters-in-R/).
1111
Help Jane take the next step and develop a few additional products from the

exercises/Problem-decomposition-exponential-growth-2-Python.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ title: Exponential Growth 2
55
language: Python
66
---
77

8-
One of you lab mates (you may remember them from the For Loops 2
8+
*The data for this problem is no longer available.*
9+
10+
One of your lab mates (you may remember them from the For Loops 2
911
problem) is busy working on insect population dynamics. Initial results
1012
suggested that exponential growth was too simplistic for understanding
1113
the observed dynamics, so now they need to look at logistic growth.
@@ -26,10 +28,8 @@ ceil function in the math module.
2628
Your lab mate has compiled data from literature on the reproductive
2729
rates and carrying capacity for a number of different individuals for a
2830
variety of species. You've been teaching them about database structure
29-
so they have broken the data into two tables: an [individuals
30-
table](http://www.programmingforbiologists.org/sites/programmingforbiologists.org/files/individuals_table.csv)
31-
and [species
32-
table](http://www.programmingforbiologists.org/sites/programmingforbiologists.org/files/species_table.csv).
31+
so they have broken the data into two tables: an *individuals
32+
table* and *species table*.
3333
The database has information on several different taxonomic groups, but
3434
for this project your lab mate is only interested in the data for the
3535
insects.
@@ -41,10 +41,7 @@ population size of 10. Once you've determined the value for each
4141
species, plot the time to equilibrium as a function of the reproductive
4242
rate and (on a separate graph) the carrying capacity.
4343

44-
You can either break this problem down into manageable parts yourself
45-
(you can use the [problem decomposition
46-
steps](http://www.programmingforbiologists.org/problem-decomposition-steps)
47-
to help) or follow [this
48-
approach](http://www.programmingforbiologists.org/problem-decomposition-problem-decomposition).
44+
Break this problem down into manageable parts yourself using the [problem
45+
decomposition steps]({{ site.baseurl }}/materials/problem-decomposition).
4946
Turn in the Python code and (if you use one) a database file with any
5047
queries that you use.

exercises/Scientific-dna-complement-2-Python.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ title: DNA Complement 2
55
language: Python
66
---
77

8-
Download the file
9-
[sequence_data_complete.txt](http://www.programmingforbiologists.org/sites/programmingforbiologists.org/files/sequence_data_complete.txt)
8+
*The data for this problem is no longer available.*
9+
10+
Download the file *sequence_data_complete.txt*
1011
from the website. This file consists of three columns separate by
1112
commas: 1) A sequence ID (like the primary keys we've using in our
1213
database work); 2) The length of the sequence; and 3) The sequence

exercises/Sets-species-composition-1-Python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ readable, and most computationally efficient ways to solve this problem.
5858

5959
When tackling a broad problem like this it is always important to
6060
think about how you are going to [decompose the
61-
problem]({{ site.baseurl }}/material/problem-decomposition) into manageable pieces. Take a few
61+
problem]({{ site.baseurl }}/materials/problem-decomposition) into manageable pieces. Take a few
6262
minutes to think about how you would approach this problem before
6363
following the steps outlined below. Sketch them out in a text file, or
6464
by writing out just the final commands you will use (i.e., none of the

materials/data-structures-R.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ shrub_data <- read.csv('./data/shrub-dimensions-labeled.csv')
108108

109109
> DO NOT USE setwd() FOR THIS CLASS
110110

111-
> Do [Exercise 10 - Shrub Volume Data Frame]({{ site.baseurl }}/exercises/Data-frames-shrub-volue-data-frame-R).
111+
> Do [Exercise 10 - Shrub Volume Data Frame]({{ site.baseurl }}/exercises/Data-frames-shrub-volume-data-frame-R).
112112

113113
### Project structure
114114

materials/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ title: Lecture Materials
6464
- [`tidyr`]({{ site.baseurl }}/materials/tidyr)
6565
- [Project Structure]({{ site.baseurl }}/materials/project-structure)
6666
- [Debugging]({{ site.baseurl }}/materials/debugging-R)
67-
- [`knitr`]({{ site.baseurl }}/materials/knitr) ([Example `RMD`]({{ site.baseurl }}/materials/knitr-examp.Rmd))
67+
- [`knitr`]({{ site.baseurl }}/materials/knitr)
6868
- [R Cheat Sheet]({{ site.baseurl }}/materials/Walkthrough-R)
6969
- [Projects]({{ site.baseurl }}/materials/projects)
7070

0 commit comments

Comments
 (0)