Skip to content

Commit 4ccfce0

Browse files
authored
Merge pull request #179 from PNNL-CompBio/synapse-inst
added instructions for synapse download
2 parents ed8c71e + 8a9b04c commit 4ccfce0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@ please see the [schema description](schema/README.md).
2828

2929
We have created a build script that executes each step of the build process to enable the creation of a `local` folder with all the requisite folders.
3030

31-
The build requires Python as well as Docker to be installed.
31+
The build requires Python as well as Docker to be installed. To access
32+
the data on Synapse (MPNST, BeatAML proteomics), you will need to
33+
[register for a synapse account](http://synapse.org/register) and then
34+
request access to the [CoderData Build
35+
Team](https://www.synapse.org/#!Team:3503472). Then you will need to
36+
create a [personal authentication
37+
token](https://www.synapse.org/#!PersonalAccessTokens:) with Download
38+
access and then set the `SYNAPSE_AUTH_TOKEN` environment variable to
39+
that token.
3240

3341
To build the docker images and run them, simply run (though this will take a while!):
3442
```

build/mpnst/02_get_drug_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ print(paste(alldrugs,collapse=','))
7272

7373

7474
##copy old drug to new drug
75-
olddrugs<-do.call(rbind,lapply(unique(unlist(strsplit(olddrugfiles,split=','))),function(x) read.table(x,header=T,sep='\t',quote='',comment.char=''))
75+
olddrugs<-do.call(rbind,lapply(unique(unlist(strsplit(olddrugfiles,split=','))),function(x) read.table(x,header=T,sep='\t',quote='',comment.char='')))
7676
olddrugs<-unique(olddrugs)
7777

7878
print(paste('Read in ',nrow(olddrugs),'old drugs'))

0 commit comments

Comments
 (0)