jbrowse-plugin-msaview 2.6.6 → 2.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/BgzipFastaMsaAdapter/BgzipFastaMsaAdapter.js +1 -1
- package/dist/LaunchMsaView/components/ManualMSALoader/ManualMSALoader.js +0 -3
- package/dist/LaunchMsaView/components/ManualMSALoader/launchView.d.ts +2 -3
- package/dist/LaunchMsaView/components/ManualMSALoader/launchView.js +3 -2
- package/dist/LaunchMsaView/components/NCBIBlastQuery/CachedBlastResults.js +10 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.d.ts +2 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.js +2 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/useCachedBlastResults.js +2 -2
- package/dist/LaunchMsaView/components/PreLoadedMSA/PreLoadedMSADataPanel.js +1 -2
- package/dist/LaunchMsaView/components/PreLoadedMSA/preCalculatedLaunchView.d.ts +2 -3
- package/dist/LaunchMsaView/components/PreLoadedMSA/preCalculatedLaunchView.js +3 -2
- package/dist/LaunchMsaView/components/calculateProteinSequence.d.ts +1 -2
- package/dist/LaunchMsaView/components/calculateProteinSequence.js +4 -2
- package/dist/LaunchMsaView/components/useTranscriptSelection.js +14 -11
- package/dist/MsaViewPanel/msaDataStore.js +7 -2
- package/dist/MsaViewPanel/util.d.ts +0 -11
- package/dist/MsaViewPanel/util.js +0 -7
- package/dist/jbrowse-plugin-msaview.umd.production.min.js +25 -25
- package/dist/jbrowse-plugin-msaview.umd.production.min.js.map +3 -3
- package/dist/utils/blastCache.js +13 -5
- package/dist/utils/domainCache.js +7 -2
- package/dist/utils/fetch.d.ts +0 -2
- package/dist/utils/fetch.js +0 -21
- package/dist/utils/ncbiDomains.js +10 -3
- package/dist/utils/taxonomyNames.js +7 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -2
- package/src/BgzipFastaMsaAdapter/BgzipFastaMsaAdapter.ts +1 -1
- package/src/LaunchMsaView/components/ManualMSALoader/ManualMSALoader.tsx +0 -3
- package/src/LaunchMsaView/components/ManualMSALoader/launchView.ts +4 -8
- package/src/LaunchMsaView/components/NCBIBlastQuery/CachedBlastResults.tsx +17 -1
- package/src/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.ts +3 -0
- package/src/LaunchMsaView/components/NCBIBlastQuery/useCachedBlastResults.ts +2 -1
- package/src/LaunchMsaView/components/PreLoadedMSA/PreLoadedMSADataPanel.tsx +1 -2
- package/src/LaunchMsaView/components/PreLoadedMSA/preCalculatedLaunchView.ts +4 -4
- package/src/LaunchMsaView/components/calculateProteinSequence.ts +4 -3
- package/src/LaunchMsaView/components/useTranscriptSelection.ts +16 -16
- package/src/MsaViewPanel/msaDataStore.ts +8 -2
- package/src/MsaViewPanel/util.ts +0 -24
- package/src/utils/blastCache.ts +14 -3
- package/src/utils/domainCache.ts +8 -2
- package/src/utils/fetch.ts +0 -28
- package/src/utils/ncbiDomains.ts +10 -3
- package/src/utils/taxonomyNames.ts +8 -2
- package/src/version.ts +1 -1
- package/dist/LaunchMsaView/components/ManualMSALoader/fetchGeneList.d.ts +0 -1
- package/dist/LaunchMsaView/components/ManualMSALoader/fetchGeneList.js +0 -11
- package/src/LaunchMsaView/components/ManualMSALoader/fetchGeneList.ts +0 -13
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export async function fetchGeneList() {
|
|
2
|
-
const res = await fetch(
|
|
3
|
-
'https://jbrowse.org/demos/msaview/knownCanonical/list.txt',
|
|
4
|
-
)
|
|
5
|
-
if (!res.ok) {
|
|
6
|
-
throw new Error(`HTTP ${res.status} fetching list ${await res.text()}`)
|
|
7
|
-
}
|
|
8
|
-
const result = await res.text()
|
|
9
|
-
return result
|
|
10
|
-
.split('\n')
|
|
11
|
-
.map(f => f.trim())
|
|
12
|
-
.filter(f => !!f)
|
|
13
|
-
}
|