-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload_to_ec2.py
49 lines (40 loc) · 1.68 KB
/
upload_to_ec2.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
44
45
46
47
48
49
#!/usr/bin/env python3
import json
import os
from argparse import ArgumentParser
from pathlib import Path
def get_uuid(data_product_metadata):
with open(data_product_metadata, "r") as json_file:
metadata = json.load(json_file)
uuid = metadata["Data Product UUID"]
return uuid
def upload_to_ec2(umap_png, metadata_json, shiny_cell_dir, uuid, ssh_key):
os.system(
f"scp -i {ssh_key} {umap_png} [email protected]:/opt/pipeline_outputs/{uuid}.png"
)
os.system(
f"scp -i {ssh_key} {metadata_json} [email protected]:/opt/pipeline_outputs/{uuid}.json"
)
os.system(
f"ssh -i {ssh_key} [email protected] mkdir {uuid}"
)
os.system(
f"scp -i {ssh_key} {shiny_cell_dir}/* [email protected]:{uuid}"
)
os.system(
f"ssh -i {ssh_key} [email protected] sudo mkdir /srv/shiny-server/{uuid}"
)
os.system(
f"ssh -i {ssh_key} [email protected] sudo mv {uuid}/* /srv/shiny-server/{uuid}"
)
def main(umap_png, metadata_json, shiny_cell_dir, ssh_key):
uuid = get_uuid(metadata_json)
upload_to_ec2(umap_png, metadata_json, shiny_cell_dir, uuid, ssh_key)
if __name__ == "__main__":
p = ArgumentParser()
p.add_argument("umap_png", type=Path)
p.add_argument("data_product_metadata", type=Path)
p.add_argument("shiny_cell_dir", type=Path)
p.add_argument("ssh_key", type=Path)
args = p.parse_args()
main(args.umap_png, args.data_product_metadata, args.shiny_cell_dir, args.ssh_key)