diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 520b04974..073efe68e 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -81,4 +81,4 @@ jobs: eslint_dir: ./frontend/src eslint_extensions: ts,vue prettier: true - prettier_dir: ./frontend/src + prettier_dir: ./frontend diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.js index fbef5487d..0d444a2c7 100644 --- a/frontend/.eslintrc.js +++ b/frontend/.eslintrc.js @@ -3,6 +3,7 @@ module.exports = { env: { browser: true, es2021: true, + node: true, }, extends: ['plugin:vue/recommended', 'eslint:recommended', '@vue/typescript/recommended', 'prettier'], ignorePatterns: ['**/*.min.js'], diff --git a/frontend/.prettierignore b/frontend/.prettierignore index 8d5619679..37dc5e256 100644 --- a/frontend/.prettierignore +++ b/frontend/.prettierignore @@ -1,4 +1,4 @@ node_modules /dist -*.min.js -package.json +**/*.min.* +package.json \ No newline at end of file diff --git a/frontend/src/components/jobs/result-tabs/PLMBlastResultsTab.vue b/frontend/src/components/jobs/result-tabs/PLMBlastResultsTab.vue index abd6ca024..5b6556595 100644 --- a/frontend/src/components/jobs/result-tabs/PLMBlastResultsTab.vue +++ b/frontend/src/components/jobs/result-tabs/PLMBlastResultsTab.vue @@ -1,31 +1,30 @@ diff --git a/frontend/src/i18n/lang/modules/tools-en.ts b/frontend/src/i18n/lang/modules/tools-en.ts index fd7015998..0cc01c980 100644 --- a/frontend/src/i18n/lang/modules/tools-en.ts +++ b/frontend/src/i18n/lang/modules/tools-en.ts @@ -479,7 +479,8 @@ export default { '' + 'Nucleic Acids Res. 2021;49(D1):D266-D273.

', hhpred_manual: '', - plmblast: 'pLM-BLAST – distant homology detection based on direct comparison of sequence representations from ' + + plmblast: + 'pLM-BLAST – distant homology detection based on direct comparison of sequence representations from ' + 'protein language models.
Kaminski K, Ludwiczak K, Alva V, Dunin-Horkawicz S. bioRxiv. 2022.', }, }; diff --git a/frontend/src/types/toolkit/results.ts b/frontend/src/types/toolkit/results.ts index 1f82f75b8..0386e9967 100644 --- a/frontend/src/types/toolkit/results.ts +++ b/frontend/src/types/toolkit/results.ts @@ -77,7 +77,6 @@ export interface PLMBLASTAlignmentItem extends SearchAlignmentItem { matchLen: number; } - export interface PSIBLASTAlignmentItem extends SearchAlignmentItem { fastaLink: string; eval: number;