Skip to content

Commit

Permalink
Merge branch 'db_schema' of github.com:BushmanLab/intSiteUploader int…
Browse files Browse the repository at this point in the history
…o db_schema
  • Loading branch information
anatolydryga committed Aug 3, 2015
2 parents c6eafb4 + 737ea2f commit 08ec74f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


## Introduction
This code is designed to upload integration sites, PCR breakpoints, and multihits identified by `intSiteCaller` and upload them to the intsitesdev database. The database is currently located at `microbxxx.med.upenn.edu:3306` and is described by the included schema, `insitesdev.sql`.
This code is designed to upload integration sites, PCR breakpoints, and multihits identified by `intSiteCaller` and upload them to the intsitesdev database. The database is currently located at `microbxxx.med.upenn.edu:3306` and is described by the included schema, `integration_site_schema.sql`.


## Inputs
Expand All @@ -31,7 +31,7 @@ the values contained in these two metadata files.
Code example:
```
cd run20150505 # a recent processed run folder
Rscript path/to/intSiteUploader.R .
Rscript path/to/intSiteUploader.R
Rscript intSiteUploader.R <primaryAnalysisDir> [mysql_group]
```

Expand Down
2 changes: 1 addition & 1 deletion helper/reset_microb237.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cmd <- sprintf("mysql --defaults-file=%s -e 'CREATE DATABASE IF NOT EXISTS intsi
message(cmd)
stopifnot( system(cmd)==0 )

cmd <- sprintf("mysql --defaults-file=%s intsitesdevtest < %s/intsitesdev.sql", test_db_cnf, codeDir)
cmd <- sprintf("mysql --defaults-file=%s intsitesdevtest < %s/integration_site_schema.sql", test_db_cnf, codeDir)
message(cmd)
stopifnot( system(cmd)==0 )

0 comments on commit 08ec74f

Please sign in to comment.