Skip to content

Commit cfb45c8

Browse files
committed
Merge pull request #5 from BushmanLab/use_sites_from_db
Use sites from db
2 parents ba6cdf9 + 149e004 commit cfb45c8

File tree

6 files changed

+2616
-141
lines changed

6 files changed

+2616
-141
lines changed

README.md

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,55 @@
1-
# Database connfig file location
1+
# Genomic Heatmap Maker for Integration Sites
22

3-
config file should be in home directory and called .my.cnf,
4-
e.g. ~/.my.cnf
53

6-
The .my.cnf format is as follows:
4+
# Script to run genomic heatmap maker from sites from DB
75

6+
For list of GTSP and replicates generate heatmap
7+
for a given reference genome and given integration site database:
88
```
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]
1030
user=YYYYYYY
1131
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
1535
```
1636

1737
# Dependencies
1838

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
2440
hiAnnotator
2541
pipeUtils
2642
colorspace
43+
GCcontent
2744

28-
GCcontent: https://github.com/anatolydryga/GCcontent
45+
List of cancer genes are copied from:
46+
CancerGeneList
2947

30-
# pipeUtils requirement
48+
# implementation details: pipeUtils requirement
3149

3250
needs a column type which is hard-coded as "insertion" for integration site
3351
and "match" for match random contol(mrc).
3452

53+
pipeUtils can only generate figures for 2 or more samples.
54+
3555

0 commit comments

Comments
 (0)