Skip to content

Commit

Permalink
Merge pull request #82 from leexgh/update-index_db_migration.js
Browse files Browse the repository at this point in the history
Update index_db_migration.js
  • Loading branch information
leexgh authored Aug 4, 2023
2 parents 1cf82d0 + 329871d commit fe1c834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/index_db_migration.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Command to run script: "mongo < index_db_migration.js"
db.adminCommand('listDatabases')
db = db.getSiblingDB('annotator')
db.getCollectionNames()
db.adminCommand('listDatabases');
db = db.getSiblingDB('annotator');
db.getCollectionNames();
searchCollection = db.getCollection('index');
const effectPriority = {};
effectPriority["transcript_ablation"] = 1; // A feature ablation whereby the deleted region includes a transcript feature
Expand Down

0 comments on commit fe1c834

Please sign in to comment.