Skip to content

Commit ef33381

Browse files
authored
Merge pull request #323 from BimberLab/25.3_fb_merge
Merge discvr-24.11 to discvr-25.3
2 parents 3cbf97c + 897ef04 commit ef33381

File tree

9 files changed

+9
-16
lines changed

9 files changed

+9
-16
lines changed

jbrowse/src/client/JBrowse/Browser/app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import View from './Browser';
22
import { createRoot } from 'react-dom/client';
33
import React from 'react';
44

5-
// Need to wait for container element to be available in labkey wrapper before render
65
window.addEventListener('DOMContentLoaded', (event) => {
76
createRoot(document.getElementById('app')).render(<View />)
87
});

jbrowse/src/client/JBrowse/Browser/dev.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import View from './Browser';
22
import { createRoot } from 'react-dom/client';
33
import React from 'react';
44

5-
// Need to wait for container element to be available in labkey wrapper before render
65
window.addEventListener('DOMContentLoaded', (event) => {
76
createRoot(document.getElementById('app')).render(<View />)
87
}, true);

jbrowse/src/client/JBrowse/VariantSearch/VariantTable.tsx renamed to jbrowse/src/client/JBrowse/VariantSearch/VariantSearch.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ import ExtendedVariantPlugin from '../Browser/plugins/ExtendedVariantPlugin/inde
1111
import VariantTableWidget from './components/VariantTableWidget';
1212
import { fetchSession } from '../utils';
1313
import { ErrorBoundary } from './components/ErrorBoundary';
14-
import LoadingIndicator from './components/LoadingIndicator';
1514
import deepmerge from '@mui/utils/deepmerge';
1615

1716
const nativePlugins = [ExtendedVariantPlugin, LogSession]
1817

19-
function VariantTable() {
18+
function VariantSearch() {
2019
const queryParam = new URLSearchParams(window.location.search);
2120
const sessionId = queryParam.get('session') || queryParam.get('database') || queryParam.get('sessionId')
2221
const locString = queryParam.get('location') || queryParam.get('loc')
@@ -97,4 +96,4 @@ function VariantTable() {
9796
)
9897
}
9998

100-
export default observer(VariantTable)
99+
export default observer(VariantSearch)
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import React from 'react';
22

3-
import VariantTable from './VariantTable';
3+
import VariantSearch from './VariantSearch';
44
import { createRoot } from 'react-dom/client';
55

6-
// Need to wait for container element to be available in labkey wrapper before render
76
window.addEventListener('DOMContentLoaded', (event) => {
8-
createRoot(document.getElementById('app')).render(<VariantTable />)
7+
createRoot(document.getElementById('app')).render(<VariantSearch />)
98
});
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import React from 'react';
22

3-
import VariantTable from './VariantTable';
3+
import VariantSearch from './VariantSearch';
44
import { createRoot } from 'react-dom/client';
55

6-
// Need to wait for container element to be available in labkey wrapper before render
76
window.addEventListener('DOMContentLoaded', (event) => {
8-
createRoot(document.getElementById('app')).render(<VariantTable />)
7+
createRoot(document.getElementById('app')).render(<VariantSearch />)
98
}, true);

jbrowse/src/client/JBrowse/VariantTable/app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from 'react';
33
import VariantTable from './VariantTable';
44
import { createRoot } from 'react-dom/client';
55

6-
// Need to wait for container element to be available in labkey wrapper before render
76
window.addEventListener('DOMContentLoaded', (event) => {
87
createRoot(document.getElementById('app')).render(<VariantTable />)
98
});

jbrowse/src/client/JBrowse/VariantTable/dev.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from 'react';
33
import VariantTable from './VariantTable';
44
import { createRoot } from 'react-dom/client';
55

6-
// Need to wait for container element to be available in labkey wrapper before render
76
window.addEventListener('DOMContentLoaded', (event) => {
87
createRoot(document.getElementById('app')).render(<VariantTable />)
98
}, true);

singlecell/resources/chunks/RunEscape.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ for (datasetId in names(seuratObjects)) {
22
printName(datasetId)
33
seuratObj <- readSeuratRDS(seuratObjects[[datasetId]])
44

5-
seuratObj <- CellMembrane::RunEscape(seuratObj, outputAssayName = outputAssayName, doPlot = TRUE, performDimRedux = performDimRedux)
5+
seuratObj <- CellMembrane::RunEscape(seuratObj, outputAssayBaseName = outputAssayBaseName, doPlot = TRUE, performDimRedux = performDimRedux)
66

77
saveData(seuratObj, datasetId)
88

singlecell/src/org/labkey/singlecell/pipeline/singlecell/RunEscape.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2121
public Provider()
2222
{
2323
super("RunEscape", "Escape/ssGSEA", "escape", "Runs escape to perform ssGSEA using Hallmark gene sets.", Arrays.asList(
24-
SeuratToolParameter.create("outputAssayName", "Output Assay Name", "The name of the assay to store results", "textfield", new JSONObject(){{
24+
SeuratToolParameter.create("outputAssayBaseName", "Output Assay Basename", "The name of the assay to store results", "textfield", new JSONObject(){{
2525
put("allowBank", false);
26-
}}, "escape.ssGSEA"),
26+
}}, "escape."),
2727
SeuratToolParameter.create("performDimRedux", "Perform DimRedux", "If true, the standard seurat PCA/FindClusters/UMAP process will be run on the escape data. This may be most useful when using a customGeneSet or a smaller set of features/pathways", "checkbox", new JSONObject(){{
2828

2929
}}, false, null, true)

0 commit comments

Comments
 (0)