Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CFBSD-Summer2020 committed Jul 31, 2020
1 parent 782c8f7 commit 5911f51
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# HW05
Due August 3rd

### HW Assignment

This week the goal is to practice tidying data and joining files together. Similar to last week you can practice these skills with data you already have or you can follow with the two (probably pretty short) HW assignments below.

## 1. Tidying the dad_mom file

In this repo, you'll find a dad_mom.txt file that isn't particularly tidy. Clean this up so there are only 4 columns
Tidy this data frame so that it adheres to the tidy data principles:

Each variable must have its own column.
Each observation must have its own row.
Each value must have its own cell.

## 2. Joining together CTRP data

CTRP is a dataset I use in my research. CTRP screens cancer cells with various compounds and determines the Area Under the Dose Response Curve (AUC, a metric for how sensitive a cell line is to that compound). However, when you download the data, it comes in parts that requires a lot of id matching to be able to use reasonably easily. For example, the file that contains the AUC data doesn't tell you the cell line name or the type of cancer it is, it just gives an experiment ID number. If you wanted to know which cell line was which, you'd have to reference the experiment_info.csv file which gives you a cell line ID for each experiment, and then reference the the cancer_cell_line_file.csv to figure out what the name of that cell line actually is.

That is all to say, it would be much easier if those files were all together instead. You're goal is to join together the 5 csv together.

Then once those files are all together, you should have no problem answering the following questions (with graphs):

Which cancer type has the lowest AUC values to the compound "vorinostat"?
Which compound is the prostate cancer cell line 22RV1 most sensitive to? (For 22RV1, which compound has the lowest AUC value?)
For the 10 compounds that target EGFR, which of them has (on average) the lowest AUC values in the breast cancer cell lines?

0 comments on commit 5911f51

Please sign in to comment.