jbrowse-plugin-msaview 2.3.8 → 2.4.0
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/AddHighlightModel/GenomeMouseoverHighlight.js +4 -15
- package/dist/AddHighlightModel/GenomeMouseoverHighlight.js.map +1 -1
- package/dist/AddHighlightModel/MsaToGenomeHighlight.js +5 -8
- package/dist/AddHighlightModel/MsaToGenomeHighlight.js.map +1 -1
- package/dist/AddHighlightModel/util.d.ts +3 -0
- package/dist/AddHighlightModel/util.js +3 -0
- package/dist/AddHighlightModel/util.js.map +1 -1
- package/dist/LaunchMsaView/components/LaunchMsaViewDialog.js +3 -8
- package/dist/LaunchMsaView/components/LaunchMsaViewDialog.js.map +1 -1
- package/dist/LaunchMsaView/components/ManualMSALoader/ManualMSALoader.js +7 -10
- package/dist/LaunchMsaView/components/ManualMSALoader/ManualMSALoader.js.map +1 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastAutomaticPanel.js +2 -5
- package/dist/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastAutomaticPanel.js.map +1 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastManualPanel.js +0 -3
- package/dist/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastManualPanel.js.map +1 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.d.ts +4 -4
- package/dist/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.js +2 -2
- package/dist/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.js.map +1 -1
- package/dist/LaunchMsaView/components/NCBIBlastQuery/consts.d.ts +4 -0
- package/dist/LaunchMsaView/components/NCBIBlastQuery/consts.js +2 -0
- package/dist/LaunchMsaView/components/NCBIBlastQuery/consts.js.map +1 -1
- package/dist/LaunchMsaView/components/PreLoadedMSA/PreLoadedMSADataPanel.js +10 -21
- package/dist/LaunchMsaView/components/PreLoadedMSA/PreLoadedMSADataPanel.js.map +1 -1
- package/dist/LaunchMsaView/components/PreLoadedMSA/types.d.ts +1 -0
- package/dist/LaunchMsaView/components/PreLoadedMSA/types.js +4 -1
- package/dist/LaunchMsaView/components/PreLoadedMSA/types.js.map +1 -1
- package/dist/LaunchMsaView/components/types.d.ts +0 -3
- package/dist/LaunchMsaView/components/useFeatureSequence.d.ts +4 -4
- package/dist/LaunchMsaView/components/useFeatureSequence.js +2 -4
- package/dist/LaunchMsaView/components/useFeatureSequence.js.map +1 -1
- package/dist/LaunchMsaView/components/useSWRFeatureSequence.d.ts +4 -5
- package/dist/LaunchMsaView/components/useSWRFeatureSequence.js +11 -30
- package/dist/LaunchMsaView/components/useSWRFeatureSequence.js.map +1 -1
- package/dist/MsaViewPanel/afterCreateAutoruns.js +4 -13
- package/dist/MsaViewPanel/afterCreateAutoruns.js.map +1 -1
- package/dist/MsaViewPanel/components/ConnectStructureDialog.js +2 -2
- package/dist/MsaViewPanel/components/ConnectStructureDialog.js.map +1 -1
- package/dist/MsaViewPanel/components/LoadingBLAST.js +2 -3
- package/dist/MsaViewPanel/components/LoadingBLAST.js.map +1 -1
- package/dist/MsaViewPanel/model.d.ts +4 -11
- package/dist/MsaViewPanel/model.js +6 -20
- package/dist/MsaViewPanel/model.js.map +1 -1
- package/dist/MsaViewPanel/msaDataStore.d.ts +0 -1
- package/dist/MsaViewPanel/msaDataStore.js +0 -9
- package/dist/MsaViewPanel/msaDataStore.js.map +1 -1
- package/dist/MsaViewPanel/structureConnection.d.ts +6 -4
- package/dist/MsaViewPanel/structureConnection.js +6 -6
- package/dist/MsaViewPanel/structureConnection.js.map +1 -1
- package/dist/MsaViewPanel/structureConnection.test.js +1 -19
- package/dist/MsaViewPanel/structureConnection.test.js.map +1 -1
- package/dist/jbrowse-plugin-msaview.umd.production.min.js +25 -27
- package/dist/jbrowse-plugin-msaview.umd.production.min.js.map +4 -4
- package/dist/utils/blastCache.d.ts +7 -13
- package/dist/utils/blastCache.js +0 -12
- package/dist/utils/blastCache.js.map +1 -1
- package/dist/utils/msa.d.ts +2 -1
- package/dist/utils/msa.js +0 -3
- package/dist/utils/msa.js.map +1 -1
- package/dist/utils/ncbiBlast.d.ts +3 -2
- package/dist/utils/ncbiBlast.js +1 -1
- package/dist/utils/ncbiBlast.js.map +1 -1
- package/dist/utils/taxonomyNames.js +9 -4
- package/dist/utils/taxonomyNames.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +22 -20
- package/src/AddHighlightModel/GenomeMouseoverHighlight.tsx +7 -21
- package/src/AddHighlightModel/MsaToGenomeHighlight.tsx +10 -10
- package/src/AddHighlightModel/util.ts +6 -0
- package/src/LaunchMsaView/components/LaunchMsaViewDialog.tsx +3 -16
- package/src/LaunchMsaView/components/ManualMSALoader/ManualMSALoader.tsx +8 -12
- package/src/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastAutomaticPanel.tsx +6 -15
- package/src/LaunchMsaView/components/NCBIBlastQuery/NCBIBlastManualPanel.tsx +0 -9
- package/src/LaunchMsaView/components/NCBIBlastQuery/blastLaunchView.ts +6 -6
- package/src/LaunchMsaView/components/NCBIBlastQuery/consts.ts +7 -0
- package/src/LaunchMsaView/components/PreLoadedMSA/PreLoadedMSADataPanel.tsx +12 -27
- package/src/LaunchMsaView/components/PreLoadedMSA/types.ts +6 -0
- package/src/LaunchMsaView/components/types.ts +0 -3
- package/src/LaunchMsaView/components/useFeatureSequence.ts +1 -7
- package/src/LaunchMsaView/components/useSWRFeatureSequence.ts +10 -37
- package/src/MsaViewPanel/afterCreateAutoruns.ts +7 -15
- package/src/MsaViewPanel/components/ConnectStructureDialog.tsx +2 -2
- package/src/MsaViewPanel/components/LoadingBLAST.tsx +4 -3
- package/src/MsaViewPanel/model.ts +16 -29
- package/src/MsaViewPanel/msaDataStore.ts +0 -9
- package/src/MsaViewPanel/structureConnection.test.ts +0 -21
- package/src/MsaViewPanel/structureConnection.ts +7 -7
- package/src/utils/blastCache.ts +14 -37
- package/src/utils/msa.ts +5 -6
- package/src/utils/ncbiBlast.ts +9 -5
- package/src/utils/taxonomyNames.ts +13 -4
- package/src/version.ts +1 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/EnsemblGeneTree.d.ts +0 -8
- package/dist/LaunchMsaView/components/EnsemblGeneTree/EnsemblGeneTree.js +0 -70
- package/dist/LaunchMsaView/components/EnsemblGeneTree/EnsemblGeneTree.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeLaunchView.d.ts +0 -13
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeLaunchView.js +0 -12
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeLaunchView.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeUtils.d.ts +0 -6
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeUtils.js +0 -25
- package/dist/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeUtils.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/gatherSequencesFromTree.d.ts +0 -2
- package/dist/LaunchMsaView/components/EnsemblGeneTree/gatherSequencesFromTree.js +0 -20
- package/dist/LaunchMsaView/components/EnsemblGeneTree/gatherSequencesFromTree.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/types.d.ts +0 -24
- package/dist/LaunchMsaView/components/EnsemblGeneTree/types.js +0 -2
- package/dist/LaunchMsaView/components/EnsemblGeneTree/types.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/useGeneTree.d.ts +0 -10
- package/dist/LaunchMsaView/components/EnsemblGeneTree/useGeneTree.js +0 -11
- package/dist/LaunchMsaView/components/EnsemblGeneTree/useGeneTree.js.map +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/util.d.ts +0 -1
- package/dist/LaunchMsaView/components/EnsemblGeneTree/util.js +0 -2
- package/dist/LaunchMsaView/components/EnsemblGeneTree/util.js.map +0 -1
- package/src/LaunchMsaView/components/EnsemblGeneTree/EnsemblGeneTree.tsx +0 -123
- package/src/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeLaunchView.ts +0 -30
- package/src/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeUtils.ts +0 -47
- package/src/LaunchMsaView/components/EnsemblGeneTree/gatherSequencesFromTree.ts +0 -22
- package/src/LaunchMsaView/components/EnsemblGeneTree/types.ts +0 -28
- package/src/LaunchMsaView/components/EnsemblGeneTree/useGeneTree.ts +0 -17
- package/src/LaunchMsaView/components/EnsemblGeneTree/util.ts +0 -6
|
@@ -21,9 +21,16 @@ async function getDB() {
|
|
|
21
21
|
})
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
async function
|
|
24
|
+
async function getCachedTaxonomies(taxids: number[]) {
|
|
25
25
|
const db = await getDB()
|
|
26
|
-
|
|
26
|
+
const tx = db.transaction(STORE_NAME, 'readonly')
|
|
27
|
+
const results = await Promise.all(
|
|
28
|
+
taxids.map(
|
|
29
|
+
taxid => tx.store.get(taxid) as Promise<CachedTaxonomy | undefined>,
|
|
30
|
+
),
|
|
31
|
+
)
|
|
32
|
+
await tx.done
|
|
33
|
+
return results
|
|
27
34
|
}
|
|
28
35
|
|
|
29
36
|
async function saveTaxonomyCache(entries: CachedTaxonomy[]) {
|
|
@@ -45,9 +52,11 @@ export async function fetchTaxonomyInfo(
|
|
|
45
52
|
): Promise<Map<number, TaxonomyInfo>> {
|
|
46
53
|
const result = new Map<number, TaxonomyInfo>()
|
|
47
54
|
const uncachedTaxids: number[] = []
|
|
55
|
+
const cachedResults = await getCachedTaxonomies(taxids)
|
|
48
56
|
|
|
49
|
-
for (
|
|
50
|
-
const
|
|
57
|
+
for (let i = 0; i < taxids.length; i++) {
|
|
58
|
+
const taxid = taxids[i]!
|
|
59
|
+
const cached = cachedResults[i]
|
|
51
60
|
if (cached) {
|
|
52
61
|
result.set(taxid, {
|
|
53
62
|
sciname: cached.sciname,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.
|
|
1
|
+
export const version = '2.4.0'
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { AbstractTrackModel, Feature } from '@jbrowse/core/util';
|
|
3
|
-
declare const EnsemblGeneTree: ({ model, feature, handleClose, }: {
|
|
4
|
-
model: AbstractTrackModel;
|
|
5
|
-
feature: Feature;
|
|
6
|
-
handleClose: () => void;
|
|
7
|
-
}) => React.JSX.Element;
|
|
8
|
-
export default EnsemblGeneTree;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react';
|
|
2
|
-
import { ErrorMessage, LoadingEllipses } from '@jbrowse/core/ui';
|
|
3
|
-
import { getContainingView, getSession } from '@jbrowse/core/util';
|
|
4
|
-
import { Button, DialogActions, DialogContent, Link } from '@mui/material';
|
|
5
|
-
import { observer } from 'mobx-react';
|
|
6
|
-
import { makeStyles } from 'tss-react/mui';
|
|
7
|
-
import { ensemblGeneTreeLaunchView } from './ensemblGeneTreeLaunchView';
|
|
8
|
-
import { useGeneTree } from './useGeneTree';
|
|
9
|
-
import { getGeneDisplayName } from '../../util';
|
|
10
|
-
import TranscriptSelector from '../TranscriptSelector';
|
|
11
|
-
import { useTranscriptSelection } from '../useTranscriptSelection';
|
|
12
|
-
const useStyles = makeStyles()({
|
|
13
|
-
dialogContent: {
|
|
14
|
-
width: '80em',
|
|
15
|
-
display: 'flex',
|
|
16
|
-
flexDirection: 'column',
|
|
17
|
-
gap: 16,
|
|
18
|
-
},
|
|
19
|
-
});
|
|
20
|
-
const EnsemblGeneTree = observer(function ({ model, feature, handleClose, }) {
|
|
21
|
-
const session = getSession(model);
|
|
22
|
-
const view = getContainingView(model);
|
|
23
|
-
const { classes } = useStyles();
|
|
24
|
-
const [launchViewError, setLaunchViewError] = useState();
|
|
25
|
-
const { options, selectedId, setSelectedId, selectedTranscript, proteinSequence, error: featureSequenceError, } = useTranscriptSelection({ feature, view });
|
|
26
|
-
const { treeData, isTreeLoading, treeError } = useGeneTree(selectedId);
|
|
27
|
-
const loadingMessage = isTreeLoading
|
|
28
|
-
? 'Loading tree data from Ensembl GeneTree'
|
|
29
|
-
: undefined;
|
|
30
|
-
const e = treeError ?? launchViewError ?? featureSequenceError;
|
|
31
|
-
return (React.createElement(React.Fragment, null,
|
|
32
|
-
React.createElement(DialogContent, { className: classes.dialogContent },
|
|
33
|
-
e ? React.createElement(ErrorMessage, { error: e }) : null,
|
|
34
|
-
loadingMessage ? React.createElement(LoadingEllipses, { message: loadingMessage }) : null,
|
|
35
|
-
treeData ? (React.createElement("div", null,
|
|
36
|
-
React.createElement("div", null,
|
|
37
|
-
"Found Ensembl Compara GeneTree: ",
|
|
38
|
-
treeData.geneTreeId),
|
|
39
|
-
React.createElement(Link, { target: "_blank", href: `https://useast.ensembl.org/Multi/GeneTree/Image?gt=${treeData.geneTreeId}` },
|
|
40
|
-
"See ",
|
|
41
|
-
treeData.geneTreeId,
|
|
42
|
-
" at Ensembl"))) : null,
|
|
43
|
-
React.createElement(TranscriptSelector, { feature: feature, options: options, selectedId: selectedId, selectedTranscript: selectedTranscript, onTranscriptChange: setSelectedId, proteinSequence: proteinSequence })),
|
|
44
|
-
React.createElement(DialogActions, null,
|
|
45
|
-
React.createElement(Button, { color: "primary", variant: "contained", onClick: () => {
|
|
46
|
-
try {
|
|
47
|
-
if (!treeData) {
|
|
48
|
-
return;
|
|
49
|
-
}
|
|
50
|
-
setLaunchViewError(undefined);
|
|
51
|
-
ensemblGeneTreeLaunchView({
|
|
52
|
-
feature,
|
|
53
|
-
view,
|
|
54
|
-
session,
|
|
55
|
-
newViewTitle: getGeneDisplayName(feature),
|
|
56
|
-
data: treeData,
|
|
57
|
-
});
|
|
58
|
-
handleClose();
|
|
59
|
-
}
|
|
60
|
-
catch (e) {
|
|
61
|
-
console.error(e);
|
|
62
|
-
setLaunchViewError(e);
|
|
63
|
-
}
|
|
64
|
-
} }, "Submit"),
|
|
65
|
-
React.createElement(Button, { color: "secondary", variant: "contained", onClick: () => {
|
|
66
|
-
handleClose();
|
|
67
|
-
} }, "Cancel"))));
|
|
68
|
-
});
|
|
69
|
-
export default EnsemblGeneTree;
|
|
70
|
-
//# sourceMappingURL=EnsemblGeneTree.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EnsemblGeneTree.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/EnsemblGeneTree.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { AbstractSessionModel, Feature } from '@jbrowse/core/util';
|
|
2
|
-
import type { LinearGenomeViewModel } from '@jbrowse/plugin-linear-genome-view';
|
|
3
|
-
export declare function ensemblGeneTreeLaunchView({ session, newViewTitle, view, feature, data, }: {
|
|
4
|
-
session: AbstractSessionModel;
|
|
5
|
-
newViewTitle: string;
|
|
6
|
-
view: LinearGenomeViewModel;
|
|
7
|
-
feature: Feature;
|
|
8
|
-
data: {
|
|
9
|
-
tree: string;
|
|
10
|
-
msa: string;
|
|
11
|
-
treeMetadata: string;
|
|
12
|
-
};
|
|
13
|
-
}): void;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export function ensemblGeneTreeLaunchView({ session, newViewTitle, view, feature, data, }) {
|
|
2
|
-
session.addView('MsaView', {
|
|
3
|
-
type: 'MsaView',
|
|
4
|
-
displayName: newViewTitle,
|
|
5
|
-
colWidth: 10,
|
|
6
|
-
rowHeight: 12,
|
|
7
|
-
data,
|
|
8
|
-
connectedViewId: view.id,
|
|
9
|
-
connectedFeature: feature.toJSON(),
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=ensemblGeneTreeLaunchView.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ensemblGeneTreeLaunchView.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeLaunchView.ts"],"names":[],"mappings":"AAGA,MAAM,UAAU,yBAAyB,CAAC,EACxC,OAAO,EACP,YAAY,EACZ,IAAI,EACJ,OAAO,EACP,IAAI,GAWL;IACC,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE;QACzB,IAAI,EAAE,SAAS;QACf,WAAW,EAAE,YAAY;QACzB,QAAQ,EAAE,EAAE;QACZ,SAAS,EAAE,EAAE;QACb,IAAI;QACJ,eAAe,EAAE,IAAI,CAAC,EAAE;QACxB,gBAAgB,EAAE,OAAO,CAAC,MAAM,EAAE;KACnC,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { gatherSequencesFromTree } from './gatherSequencesFromTree';
|
|
2
|
-
import { fetchWithLocalStorageCache, jsonfetch, textfetch } from './util';
|
|
3
|
-
const base = 'https://rest.ensembl.org';
|
|
4
|
-
export async function geneTreeFetcher(id2) {
|
|
5
|
-
const id = id2.replace(/\..*/, '');
|
|
6
|
-
const { species } = await fetchWithLocalStorageCache(`${id}-ensembl`, () => jsonfetch(`${base}/lookup/id/${id}?content-type=application/json`));
|
|
7
|
-
const treeBase = `${base}/genetree/member/id/${species}/${id}`;
|
|
8
|
-
const geneTreeResult = await fetchWithLocalStorageCache(`${id}-msa`, () => jsonfetch(`${treeBase}?content-type=application/json;aligned=1;sequence=pep`));
|
|
9
|
-
// we query again to get newick format tree. could probably extract from json
|
|
10
|
-
// as alternative
|
|
11
|
-
const tree = await fetchWithLocalStorageCache(`${id}-tree`, () => textfetch(`${treeBase}?nh_format=simple;content-type=text/x-nh`));
|
|
12
|
-
const res = gatherSequencesFromTree(geneTreeResult.tree);
|
|
13
|
-
return {
|
|
14
|
-
geneTreeId: geneTreeResult.id,
|
|
15
|
-
tree,
|
|
16
|
-
msa: res.map(r => `>${r.id}\n${r.seq}`).join('\n'),
|
|
17
|
-
treeMetadata: JSON.stringify(Object.fromEntries(res.map(r => [
|
|
18
|
-
r.id,
|
|
19
|
-
{
|
|
20
|
-
genome: r.species,
|
|
21
|
-
},
|
|
22
|
-
]))),
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
//# sourceMappingURL=ensemblGeneTreeUtils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ensemblGeneTreeUtils.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/ensemblGeneTreeUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,0BAA0B,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA;AAIzE,MAAM,IAAI,GAAG,0BAA0B,CAAA;AAEvC,MAAM,CAAC,KAAK,UAAU,eAAe,CAAC,GAAW;IAC/C,MAAM,EAAE,GAAG,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;IAClC,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,0BAA0B,CAAC,GAAG,EAAE,UAAU,EAAE,GAAG,EAAE,CACzE,SAAS,CACP,GAAG,IAAI,cAAc,EAAE,gCAAgC,CACxD,CACF,CAAA;IACD,MAAM,QAAQ,GAAG,GAAG,IAAI,uBAAuB,OAAO,IAAI,EAAE,EAAE,CAAA;IAC9D,MAAM,cAAc,GAAG,MAAM,0BAA0B,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,CACxE,SAAS,CACP,GAAG,QAAQ,uDAAuD,CACnE,CACF,CAAA;IAED,6EAA6E;IAC7E,iBAAiB;IACjB,MAAM,IAAI,GAAG,MAAM,0BAA0B,CAAS,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,CACvE,SAAS,CAAC,GAAG,QAAQ,0CAA0C,CAAC,CACjE,CAAA;IAED,MAAM,GAAG,GAAG,uBAAuB,CAAC,cAAc,CAAC,IAAI,CAAC,CAAA;IACxD,OAAO;QACL,UAAU,EAAE,cAAc,CAAC,EAAE;QAC7B,IAAI;QACJ,GAAG,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QAClD,YAAY,EAAE,IAAI,CAAC,SAAS,CAC1B,MAAM,CAAC,WAAW,CAChB,GAAG,CAAC,GAAG,CACL,CAAC,CAAC,EAAE,CACF;YACE,CAAC,CAAC,EAAE;YACJ;gBACE,MAAM,EAAE,CAAC,CAAC,OAAO;aAClB;SACO,CACb,CACF,CACF;KACF,CAAA;AACH,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export function gatherSequencesFromTree(tree, arr = []) {
|
|
2
|
-
if (tree.children) {
|
|
3
|
-
for (const child of tree.children) {
|
|
4
|
-
if (child.sequence) {
|
|
5
|
-
const id = child.sequence.id[0]?.accession;
|
|
6
|
-
if (id) {
|
|
7
|
-
arr.push({
|
|
8
|
-
id,
|
|
9
|
-
seq: child.sequence.mol_seq.seq,
|
|
10
|
-
species: child.taxonomy.common_name || child.taxonomy.scientific_name,
|
|
11
|
-
genomicLocString: child.sequence.mol_seq.location,
|
|
12
|
-
});
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
gatherSequencesFromTree(child, arr);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
return arr;
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=gatherSequencesFromTree.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gatherSequencesFromTree.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/gatherSequencesFromTree.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,uBAAuB,CAAC,IAAc,EAAE,MAAiB,EAAE;IACzE,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;QAClB,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;YAClC,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;gBACnB,MAAM,EAAE,GAAG,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,SAAS,CAAA;gBAC1C,IAAI,EAAE,EAAE,CAAC;oBACP,GAAG,CAAC,IAAI,CAAC;wBACP,EAAE;wBACF,GAAG,EAAE,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG;wBAC/B,OAAO,EACL,KAAK,CAAC,QAAQ,CAAC,WAAW,IAAI,KAAK,CAAC,QAAQ,CAAC,eAAe;wBAC9D,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,QAAQ;qBAClD,CAAC,CAAA;gBACJ,CAAC;YACH,CAAC;YACD,uBAAuB,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;QACrC,CAAC;IACH,CAAC;IACD,OAAO,GAAG,CAAA;AACZ,CAAC"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export interface TreeNodeSequence {
|
|
2
|
-
mol_seq: {
|
|
3
|
-
seq: string;
|
|
4
|
-
location?: string;
|
|
5
|
-
};
|
|
6
|
-
id: {
|
|
7
|
-
accession: string;
|
|
8
|
-
}[];
|
|
9
|
-
}
|
|
10
|
-
export interface TreeNodeTaxonomy {
|
|
11
|
-
common_name: string;
|
|
12
|
-
scientific_name: string;
|
|
13
|
-
}
|
|
14
|
-
export interface TreeNode {
|
|
15
|
-
children?: TreeNode[];
|
|
16
|
-
sequence?: TreeNodeSequence;
|
|
17
|
-
taxonomy: TreeNodeTaxonomy;
|
|
18
|
-
}
|
|
19
|
-
export interface TreeRow {
|
|
20
|
-
id: string;
|
|
21
|
-
seq: string;
|
|
22
|
-
species: string;
|
|
23
|
-
genomicLocString?: string;
|
|
24
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/types.ts"],"names":[],"mappings":""}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import useSWR from 'swr';
|
|
2
|
-
import { geneTreeFetcher } from './ensemblGeneTreeUtils';
|
|
3
|
-
export function useGeneTree(geneId) {
|
|
4
|
-
const { data, error, isLoading } = useSWR(() => (geneId ? ['geneTree', geneId] : null), ([, geneId]) => geneTreeFetcher(geneId), {
|
|
5
|
-
revalidateOnFocus: false,
|
|
6
|
-
revalidateOnReconnect: false,
|
|
7
|
-
revalidateIfStale: false,
|
|
8
|
-
});
|
|
9
|
-
return { treeData: data, isTreeLoading: isLoading, treeError: error };
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=useGeneTree.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useGeneTree.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/useGeneTree.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,KAAK,CAAA;AAExB,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAExD,MAAM,UAAU,WAAW,CAAC,MAAc;IACxC,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,MAAM,CACvC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAC5C,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,eAAe,CAAC,MAAM,CAAC,EACvC;QACE,iBAAiB,EAAE,KAAK;QACxB,qBAAqB,EAAE,KAAK;QAC5B,iBAAiB,EAAE,KAAK;KACzB,CACF,CAAA;IAED,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,CAAA;AACvE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { fetchWithLocalStorageCache, jsonfetch, textfetch, unzipfetch, } from '../../../utils/fetch';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/LaunchMsaView/components/EnsemblGeneTree/util.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,0BAA0B,EAC1B,SAAS,EACT,SAAS,EACT,UAAU,GACX,MAAM,sBAAsB,CAAA"}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react'
|
|
2
|
-
|
|
3
|
-
import { ErrorMessage, LoadingEllipses } from '@jbrowse/core/ui'
|
|
4
|
-
import { getContainingView, getSession } from '@jbrowse/core/util'
|
|
5
|
-
import { Button, DialogActions, DialogContent, Link } from '@mui/material'
|
|
6
|
-
import { observer } from 'mobx-react'
|
|
7
|
-
import { makeStyles } from 'tss-react/mui'
|
|
8
|
-
|
|
9
|
-
import { ensemblGeneTreeLaunchView } from './ensemblGeneTreeLaunchView'
|
|
10
|
-
import { useGeneTree } from './useGeneTree'
|
|
11
|
-
import { getGeneDisplayName } from '../../util'
|
|
12
|
-
import TranscriptSelector from '../TranscriptSelector'
|
|
13
|
-
import { useTranscriptSelection } from '../useTranscriptSelection'
|
|
14
|
-
|
|
15
|
-
import type { AbstractTrackModel, Feature } from '@jbrowse/core/util'
|
|
16
|
-
import type { LinearGenomeViewModel } from '@jbrowse/plugin-linear-genome-view'
|
|
17
|
-
|
|
18
|
-
const useStyles = makeStyles()({
|
|
19
|
-
dialogContent: {
|
|
20
|
-
width: '80em',
|
|
21
|
-
display: 'flex',
|
|
22
|
-
flexDirection: 'column',
|
|
23
|
-
gap: 16,
|
|
24
|
-
},
|
|
25
|
-
})
|
|
26
|
-
|
|
27
|
-
const EnsemblGeneTree = observer(function ({
|
|
28
|
-
model,
|
|
29
|
-
feature,
|
|
30
|
-
handleClose,
|
|
31
|
-
}: {
|
|
32
|
-
model: AbstractTrackModel
|
|
33
|
-
feature: Feature
|
|
34
|
-
handleClose: () => void
|
|
35
|
-
}) {
|
|
36
|
-
const session = getSession(model)
|
|
37
|
-
const view = getContainingView(model) as LinearGenomeViewModel
|
|
38
|
-
const { classes } = useStyles()
|
|
39
|
-
const [launchViewError, setLaunchViewError] = useState<unknown>()
|
|
40
|
-
const {
|
|
41
|
-
options,
|
|
42
|
-
selectedId,
|
|
43
|
-
setSelectedId,
|
|
44
|
-
selectedTranscript,
|
|
45
|
-
proteinSequence,
|
|
46
|
-
error: featureSequenceError,
|
|
47
|
-
} = useTranscriptSelection({ feature, view })
|
|
48
|
-
const { treeData, isTreeLoading, treeError } = useGeneTree(selectedId)
|
|
49
|
-
|
|
50
|
-
const loadingMessage = isTreeLoading
|
|
51
|
-
? 'Loading tree data from Ensembl GeneTree'
|
|
52
|
-
: undefined
|
|
53
|
-
const e = treeError ?? launchViewError ?? featureSequenceError
|
|
54
|
-
|
|
55
|
-
return (
|
|
56
|
-
<>
|
|
57
|
-
<DialogContent className={classes.dialogContent}>
|
|
58
|
-
{e ? <ErrorMessage error={e} /> : null}
|
|
59
|
-
{loadingMessage ? <LoadingEllipses message={loadingMessage} /> : null}
|
|
60
|
-
{treeData ? (
|
|
61
|
-
<div>
|
|
62
|
-
<div>Found Ensembl Compara GeneTree: {treeData.geneTreeId}</div>
|
|
63
|
-
<Link
|
|
64
|
-
target="_blank"
|
|
65
|
-
href={`https://useast.ensembl.org/Multi/GeneTree/Image?gt=${treeData.geneTreeId}`}
|
|
66
|
-
>
|
|
67
|
-
See {treeData.geneTreeId} at Ensembl
|
|
68
|
-
</Link>
|
|
69
|
-
</div>
|
|
70
|
-
) : null}
|
|
71
|
-
|
|
72
|
-
<TranscriptSelector
|
|
73
|
-
feature={feature}
|
|
74
|
-
options={options}
|
|
75
|
-
selectedId={selectedId}
|
|
76
|
-
selectedTranscript={selectedTranscript}
|
|
77
|
-
onTranscriptChange={setSelectedId}
|
|
78
|
-
proteinSequence={proteinSequence}
|
|
79
|
-
/>
|
|
80
|
-
</DialogContent>
|
|
81
|
-
|
|
82
|
-
<DialogActions>
|
|
83
|
-
<Button
|
|
84
|
-
color="primary"
|
|
85
|
-
variant="contained"
|
|
86
|
-
onClick={() => {
|
|
87
|
-
try {
|
|
88
|
-
if (!treeData) {
|
|
89
|
-
return
|
|
90
|
-
}
|
|
91
|
-
setLaunchViewError(undefined)
|
|
92
|
-
|
|
93
|
-
ensemblGeneTreeLaunchView({
|
|
94
|
-
feature,
|
|
95
|
-
view,
|
|
96
|
-
session,
|
|
97
|
-
newViewTitle: getGeneDisplayName(feature),
|
|
98
|
-
data: treeData,
|
|
99
|
-
})
|
|
100
|
-
handleClose()
|
|
101
|
-
} catch (e) {
|
|
102
|
-
console.error(e)
|
|
103
|
-
setLaunchViewError(e)
|
|
104
|
-
}
|
|
105
|
-
}}
|
|
106
|
-
>
|
|
107
|
-
Submit
|
|
108
|
-
</Button>
|
|
109
|
-
<Button
|
|
110
|
-
color="secondary"
|
|
111
|
-
variant="contained"
|
|
112
|
-
onClick={() => {
|
|
113
|
-
handleClose()
|
|
114
|
-
}}
|
|
115
|
-
>
|
|
116
|
-
Cancel
|
|
117
|
-
</Button>
|
|
118
|
-
</DialogActions>
|
|
119
|
-
</>
|
|
120
|
-
)
|
|
121
|
-
})
|
|
122
|
-
|
|
123
|
-
export default EnsemblGeneTree
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import type { AbstractSessionModel, Feature } from '@jbrowse/core/util'
|
|
2
|
-
import type { LinearGenomeViewModel } from '@jbrowse/plugin-linear-genome-view'
|
|
3
|
-
|
|
4
|
-
export function ensemblGeneTreeLaunchView({
|
|
5
|
-
session,
|
|
6
|
-
newViewTitle,
|
|
7
|
-
view,
|
|
8
|
-
feature,
|
|
9
|
-
data,
|
|
10
|
-
}: {
|
|
11
|
-
session: AbstractSessionModel
|
|
12
|
-
newViewTitle: string
|
|
13
|
-
view: LinearGenomeViewModel
|
|
14
|
-
feature: Feature
|
|
15
|
-
data: {
|
|
16
|
-
tree: string
|
|
17
|
-
msa: string
|
|
18
|
-
treeMetadata: string
|
|
19
|
-
}
|
|
20
|
-
}) {
|
|
21
|
-
session.addView('MsaView', {
|
|
22
|
-
type: 'MsaView',
|
|
23
|
-
displayName: newViewTitle,
|
|
24
|
-
colWidth: 10,
|
|
25
|
-
rowHeight: 12,
|
|
26
|
-
data,
|
|
27
|
-
connectedViewId: view.id,
|
|
28
|
-
connectedFeature: feature.toJSON(),
|
|
29
|
-
})
|
|
30
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { gatherSequencesFromTree } from './gatherSequencesFromTree'
|
|
2
|
-
import { fetchWithLocalStorageCache, jsonfetch, textfetch } from './util'
|
|
3
|
-
|
|
4
|
-
import type { TreeNode } from './types'
|
|
5
|
-
|
|
6
|
-
const base = 'https://rest.ensembl.org'
|
|
7
|
-
|
|
8
|
-
export async function geneTreeFetcher(id2: string) {
|
|
9
|
-
const id = id2.replace(/\..*/, '')
|
|
10
|
-
const { species } = await fetchWithLocalStorageCache(`${id}-ensembl`, () =>
|
|
11
|
-
jsonfetch<{ species: string }>(
|
|
12
|
-
`${base}/lookup/id/${id}?content-type=application/json`,
|
|
13
|
-
),
|
|
14
|
-
)
|
|
15
|
-
const treeBase = `${base}/genetree/member/id/${species}/${id}`
|
|
16
|
-
const geneTreeResult = await fetchWithLocalStorageCache(`${id}-msa`, () =>
|
|
17
|
-
jsonfetch<{ tree: TreeNode; id: string }>(
|
|
18
|
-
`${treeBase}?content-type=application/json;aligned=1;sequence=pep`,
|
|
19
|
-
),
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
// we query again to get newick format tree. could probably extract from json
|
|
23
|
-
// as alternative
|
|
24
|
-
const tree = await fetchWithLocalStorageCache<string>(`${id}-tree`, () =>
|
|
25
|
-
textfetch(`${treeBase}?nh_format=simple;content-type=text/x-nh`),
|
|
26
|
-
)
|
|
27
|
-
|
|
28
|
-
const res = gatherSequencesFromTree(geneTreeResult.tree)
|
|
29
|
-
return {
|
|
30
|
-
geneTreeId: geneTreeResult.id,
|
|
31
|
-
tree,
|
|
32
|
-
msa: res.map(r => `>${r.id}\n${r.seq}`).join('\n'),
|
|
33
|
-
treeMetadata: JSON.stringify(
|
|
34
|
-
Object.fromEntries(
|
|
35
|
-
res.map(
|
|
36
|
-
r =>
|
|
37
|
-
[
|
|
38
|
-
r.id,
|
|
39
|
-
{
|
|
40
|
-
genome: r.species,
|
|
41
|
-
},
|
|
42
|
-
] as const,
|
|
43
|
-
),
|
|
44
|
-
),
|
|
45
|
-
),
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { TreeNode, TreeRow } from './types'
|
|
2
|
-
|
|
3
|
-
export function gatherSequencesFromTree(tree: TreeNode, arr: TreeRow[] = []) {
|
|
4
|
-
if (tree.children) {
|
|
5
|
-
for (const child of tree.children) {
|
|
6
|
-
if (child.sequence) {
|
|
7
|
-
const id = child.sequence.id[0]?.accession
|
|
8
|
-
if (id) {
|
|
9
|
-
arr.push({
|
|
10
|
-
id,
|
|
11
|
-
seq: child.sequence.mol_seq.seq,
|
|
12
|
-
species:
|
|
13
|
-
child.taxonomy.common_name || child.taxonomy.scientific_name,
|
|
14
|
-
genomicLocString: child.sequence.mol_seq.location,
|
|
15
|
-
})
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
gatherSequencesFromTree(child, arr)
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
return arr
|
|
22
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export interface TreeNodeSequence {
|
|
2
|
-
mol_seq: {
|
|
3
|
-
seq: string
|
|
4
|
-
location?: string
|
|
5
|
-
}
|
|
6
|
-
id: {
|
|
7
|
-
accession: string
|
|
8
|
-
}[]
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface TreeNodeTaxonomy {
|
|
12
|
-
common_name: string
|
|
13
|
-
scientific_name: string
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// This is a self-referential tree data structure
|
|
17
|
-
export interface TreeNode {
|
|
18
|
-
children?: TreeNode[]
|
|
19
|
-
sequence?: TreeNodeSequence
|
|
20
|
-
taxonomy: TreeNodeTaxonomy
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export interface TreeRow {
|
|
24
|
-
id: string
|
|
25
|
-
seq: string
|
|
26
|
-
species: string
|
|
27
|
-
genomicLocString?: string
|
|
28
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import useSWR from 'swr'
|
|
2
|
-
|
|
3
|
-
import { geneTreeFetcher } from './ensemblGeneTreeUtils'
|
|
4
|
-
|
|
5
|
-
export function useGeneTree(geneId: string) {
|
|
6
|
-
const { data, error, isLoading } = useSWR(
|
|
7
|
-
() => (geneId ? ['geneTree', geneId] : null),
|
|
8
|
-
([, geneId]) => geneTreeFetcher(geneId),
|
|
9
|
-
{
|
|
10
|
-
revalidateOnFocus: false,
|
|
11
|
-
revalidateOnReconnect: false,
|
|
12
|
-
revalidateIfStale: false,
|
|
13
|
-
},
|
|
14
|
-
)
|
|
15
|
-
|
|
16
|
-
return { treeData: data, isTreeLoading: isLoading, treeError: error }
|
|
17
|
-
}
|