|
1 | 1 | ## HCMI Data |
2 | 2 |
|
3 | | -Here we will store the scripts required to process the data from the [Human Cancer Models Initiative](https://ocg.cancer.gov/programs/HCMI) |
| 3 | +Here we will store the scripts required to process the data from the |
| 4 | +[Human Cancer Models |
| 5 | +Initiative](https://ocg.cancer.gov/programs/HCMI). |
| 6 | + |
| 7 | +Currenlty all data collected is part of the [HCMI-CMDC Project on the |
| 8 | +GDC](https://portal.gdc.cancer.gov/analysis_page?app=Projects). To |
| 9 | +update: |
| 10 | + |
| 11 | +1. Navigate to the [GDC Data |
| 12 | + Portal](https://portal.gdc.cancer.gov/analysis_page?app=Projects), |
| 13 | + and select 'HCMI-CMDC' |
| 14 | +2. Click on the 'Cases' button, and select the download button where |
| 15 | + it lists the number of files. |
| 16 | +3. This will download the ENTIRE Manifes |
| 17 | +4. Filter the manifest for RNASeq, WGS mutations, and copy number |
| 18 | + calls using the following command: |
| 19 | +``` |
| 20 | + cat ~gdc_manifest.2025-07-08.091940.txt | grep 'mask\|copy\|rna_seq\|md5' |
| 21 | + | grep 'txt\|maf\|tsv\|md5' > new_manifest.txt |
| 22 | + cp new_manifest.txt full_manifest.txt |
| 23 | + |
| 24 | +``` |
4 | 25 |
|
5 | 26 |
|
6 | | -Currently the tool require two steps to build the data: |
| 27 | +Currently the tool require two scripts to build the data: |
7 | 28 | ``` |
8 | 29 | python 01-createHCMISamplesFile.py |
9 | 30 |
|
10 | | -python 02-getHCMIData.py -m transcriptomics_gdc_manifest.txt -t transcriptomics -o transcriptomics.csv |
| 31 | +python 02-getHCMIData.py -m full_manifest.txt -t transcriptomics -o transcriptomics.csv |
11 | 32 |
|
12 | | -python 02-getHCMIData.py -m mutations_manifest_gdc.txt -t mutations -o mutations.csv |
| 33 | +python 02-getHCMIData.py -m full_manifest.txt -t mutations -o mutations.csv |
13 | 34 |
|
14 | | -python 02-getHCMIData.py -m _manifest.txt -t copy_number -o copy_number.csv |
| 35 | +python 02-getHCMIData.py -m full_manifest.txt -t copy_number -o copy_number.csv |
15 | 36 |
|
16 | 37 |
|
17 | | -``` |
| 38 | +``` |
0 commit comments