-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgcp_alphamissense.R
More file actions
31 lines (21 loc) · 1.05 KB
/
gcp_alphamissense.R
File metadata and controls
31 lines (21 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
script <- "
filename=$1
files='AlphaMissense_aa_substitutions.tsv.gz AlphaMissense_gene_hg19.tsv.gz AlphaMissense_gene_hg38.tsv.gz AlphaMissense_hg19.tsv.gz AlphaMissense_hg38.tsv.gz AlphaMissense_isoforms_aa_substitutions.tsv.gz lphaMissense_isoforms_hg38.tsv.gz README.pdf'
for f in $files;
do
url=https://storage.googleapis.com/dm_alphamissense/$f
wget $url
done
tabix -s 1 -b 2 -e 2 -f -S 1 AlphaMissense_hg38.tsv.gz
tabix -s 1 -b 2 -e 2 -f -S 1 AlphaMissense_hg19.tsv.gz
"
gcp_alphamissense <- recipeMake(shscript = script,
outputID = "gfiles",
outputGlob = "*",
requireTools = "tabix")
gcp_alphamissense <- addMeta(gcp_alphamissense,
label = "gcp_alphamissense",
doc = "AlphaMissense Predictions for human major transcripts and isoforms.")
getData(gcp_alphamissense,
outdir = "/projects/rpci/shared/references/alphamissense",
notes = c("alphamissense", "pathogenic predictions"))