|
1 |
| -# Database connfig file location |
| 1 | +# Genomic Heatmap Maker for Integration Sites |
2 | 2 |
|
3 |
| -config file should be in home directory and called .my.cnf, |
4 |
| -e.g. ~/.my.cnf |
5 | 3 |
|
6 |
| -The .my.cnf format is as follows: |
| 4 | +# Script to run genomic heatmap maker from sites from DB |
7 | 5 |
|
| 6 | +For list of GTSP and replicates generate heatmap |
| 7 | +for a given reference genome and given integration site database: |
8 | 8 | ```
|
9 |
| -[intSitesDEV-dev] |
| 9 | +Rscript genomicHeatmapMaker.R sampleName_GTSP.csv -o heatmap --ref_genome hg18 -sites_group intSitesDev237 |
| 10 | +``` |
| 11 | +Group should be present in ~/.my.cnf. |
| 12 | + |
| 13 | +File `sampleName_GTSP.csv` should have at least 2 columns: sampleName and GTSP. |
| 14 | +If column `label` is given it will be used as a label in heatmap otherrwise GTSP will be used. |
| 15 | +All replicates of given GTSP merged together. See geneTherapyPatientReportMaker and intSiteCaller |
| 16 | +for instruction how to generate `sampleName_GTSP.csv`. |
| 17 | + |
| 18 | +Defaults: reference genome is "hg18" and sites group is "intsites_miseq". |
| 19 | + |
| 20 | + |
| 21 | +# Database configuration file |
| 22 | + |
| 23 | +Configuration file should be in home directory and called .my.cnf, |
| 24 | +(~/.my.cnf). |
| 25 | + |
| 26 | +The .my.cnf format is: |
| 27 | + |
| 28 | +``` |
| 29 | +[group_name] |
10 | 30 | user=YYYYYYY
|
11 | 31 | password=XXXXXX
|
12 |
| -host=microb98.med.upenn.edu |
13 |
| -port=3309 |
14 |
| -database=intsitesdev |
| 32 | +host=microbZZZ.med.upenn.edu |
| 33 | +port=330X |
| 34 | +database=XXX |
15 | 35 | ```
|
16 | 36 |
|
17 | 37 | # Dependencies
|
18 | 38 |
|
19 |
| -intSiteRetriever : https://github.com/esherm/intSiteRetriever |
20 |
| -(at present get the project in current folder: |
21 |
| -``` |
22 |
| -git clone https://github.com/esherm/intSiteRetriever |
23 |
| -```) |
| 39 | +intSiteRetriever |
24 | 40 | hiAnnotator
|
25 | 41 | pipeUtils
|
26 | 42 | colorspace
|
| 43 | +GCcontent |
27 | 44 |
|
28 |
| -GCcontent: https://github.com/anatolydryga/GCcontent |
| 45 | +List of cancer genes are copied from: |
| 46 | +CancerGeneList |
29 | 47 |
|
30 |
| -# pipeUtils requirement |
| 48 | +# implementation details: pipeUtils requirement |
31 | 49 |
|
32 | 50 | needs a column type which is hard-coded as "insertion" for integration site
|
33 | 51 | and "match" for match random contol(mrc).
|
34 | 52 |
|
| 53 | +pipeUtils can only generate figures for 2 or more samples. |
| 54 | + |
35 | 55 |
|
0 commit comments