Skip to content

Commit

Permalink
Adding back the source table for database
Browse files Browse the repository at this point in the history
  • Loading branch information
ntran18 committed Nov 29, 2023
1 parent 63005b7 commit 5fb2ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/protein-protein-database/scripts/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
This function Loads Protein-Protein Network Data Sources into the database
"""
def LOAD_SOURCES():
print('COPY protein_protein_interactions (time_stamp, source, display_name) FROM stdin;')
print('COPY protein_protein_interactions.source (time_stamp, source, display_name) FROM stdin;')
NETWORK_DATA_SOURCE = '../script-results/processed-loader-files/source.csv'
with open(NETWORK_DATA_SOURCE, 'r+') as f:
reader = csv.reader(f)
Expand Down

0 comments on commit 5fb2ffd

Please sign in to comment.