-
Notifications
You must be signed in to change notification settings - Fork 1
/
upload.py
43 lines (35 loc) · 1.55 KB
/
upload.py
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
32
33
34
35
36
37
38
39
40
41
42
43
import biothings.hub.dataload.uploader
import os
import biothings
import config
import requests
biothings.config_for_app(config)
MAP_URL = "https://raw.githubusercontent.com/SuLab/outbreak.info-resources/master/outbreak_resources_es_mapping.json"
MAP_VARS = ["@type", "author", "citedBy", "curatedBy", "date", "dateCreated", "dateModified", "datePublished", "description", "doi", "funding", "identifier", "isBasedOn", "keywords", "measurementParameter", "measurementTechnique", "name", "relatedTo", "url"]
# when code is exported, import becomes relative
try:
from covid_pdb_datasets.parser import load_annotations as parser_func
except ImportError:
from .parser import load_annotations as parser_func
class PDBUploader(biothings.hub.dataload.uploader.BaseSourceUploader):
# main_source = "covid_pdb_datasets"
name = "covid_pdb_datasets"
__metadata__ = {
"src_meta": {
'license_url': 'https://www.rcsb.org/pages/usage-policy',
'licence': 'CC0 1.0 Universal',
'url': 'https://www.rcsb.org/news?year=2020&article=5e74d55d2d410731e9944f52&feature=true'
}
}
idconverter = None
def load_data(self, data_folder):
if data_folder:
self.logger.info("Load data from directory: '%s'", data_folder)
return parser_func(data_folder)
@classmethod
def get_mapping(klass):
r = requests.get(MAP_URL)
if(r.status_code == 200):
mapping = r.json()
mapping_dict = { key: mapping[key] for key in MAP_VARS }
return mapping_dict