Skip to content

Commit e3c59d8

Browse files
committed
Renamed pdb100_folddisco to pdb_folddisco
1 parent ca31cce commit e3c59d8

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

frontend/ResultFoldDisco.vue

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ export default {
387387
},
388388
async getTargetPdb(item, db) {
389389
let target = item.dbkey;
390-
if (db.startsWith("pdb100")) {
390+
if (db.startsWith("pdb_")) {
391391
target = item.target;
392392
}
393393
const re = "api/result/folddisco/" + this.$route.params.ticket + '?database=' + db +'&id=' + target;
@@ -623,12 +623,13 @@ export default {
623623
let localData = this.$root.userData;
624624
hits = localData[this.$route.params.entry];
625625
} else {
626-
const response = await this.$axios.get("api/result/folddisco/" + this.ticket, {
627-
headers: {
628-
'Cache-Control': 'no-cache'
629-
},
630-
// transformResponse: [(d) => {d}]
631-
});
626+
const response = await this.$axios.get("api/result/folddisco/" + this.ticket); //Rachel: recover
627+
// const response = await this.$axios.get("api/result/folddisco/" + this.ticket, {
628+
// headers: {
629+
// 'Cache-Control': 'no-cache'
630+
// },
631+
// // transformResponse: [(d) => {d}]
632+
// });
632633
const data = response.data;
633634
634635
if (data.alignments == null || data.alignments.length > 0) {

0 commit comments

Comments
 (0)