Skip to content

Commit eb3d5ea

Browse files
authored
[GEN-1953] save maf table to prod (#595)
* save maf table as the running mode
1 parent b217302 commit eb3d5ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/input_to_database.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
44
"""
55
import argparse
6-
from datetime import date
76
import logging
7+
from datetime import date
88

99
from genie import (
1010
config,
@@ -102,9 +102,9 @@ def main(
102102
today = date.today()
103103
table_name = f"Narrow MAF Database - {today}"
104104
# filetype = "vcf2maf"
105-
# syn7208886 is the GENIE staging project to archive maf table
105+
# save maf table to testing or production project as the mode
106106
new_tables = process_functions.create_new_fileformat_table(
107-
syn, "vcf2maf", table_name, project_id, "syn7208886"
107+
syn, "vcf2maf", table_name, project_id, project_id
108108
)
109109
syn.setPermissions(new_tables["newdb_ent"].id, 3326313, [])
110110
genie_config["vcf2maf"] = new_tables["newdb_ent"].id

0 commit comments

Comments
 (0)