You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Step 4: Update the label, summary and description.
20
-
# A unique, human-readable, short label. Used for creating summary tables and visualisations.
21
-
label: Template
22
-
summary: A one sentence summary of purpose and methodology. Used for creating an overview tables.
23
-
description: |
24
-
Provide a clear and concise description of your task, detailing the specific problem it aims
25
-
to solve. Outline the input data types, the expected output, and any assumptions or constraints.
26
-
Be sure to explain any terminology or concepts that are essential for understanding the task.
15
+
label: Spatial Trajectory Inference
16
+
summary: Predicting the spatial trajectory of cells in a tissue based on spatial transcriptomics data.
17
+
description:
27
18
28
-
Explain the motivation behind your proposed task. Describe the biological or computational
29
-
problem you aim to address and why it's important. Discuss the current state of research in
30
-
this area and any gaps or challenges that your task could help address. This section
31
-
should convince readers of the significance and relevance of your task.
19
+
Spatial transcriptomics preserves each cell's physical position alongside its expression profile, enabling pseudotime prediction using 2D spatial context.
20
+
Different methods make different assumptions about resolution, input format, and output, and are further complicated by spatial batch effects not present in dissociated single-cell data.
21
+
While dynbenchmark resolved this comparison problem for non-spatial trajectory inference methods, no equivalent standardized benchmark exists for spatial pseudotime prediction, and existing method papers are validated only against each other or qualitative marker trends rather than tissues with independently known trajectories.
22
+
23
+
This task benchmarks pseudotime prediction methods on 2D tissue datasets with well-characterized ground-truth spatial axes.
24
+
Input data consists of AnnData objects containing 2D spatial transcriptomics data with spatial coordinates.
25
+
The output is a set of quantitative metric scores comparing each method's predicted pseudotime against ground truth, capturing both trajectory accuracy and preservation of relevant biological information.
32
26
33
27
# A list of references to relevant literature. Each reference should be a DOI or a bibtex entry
34
28
references:
@@ -47,32 +41,51 @@ references:
47
41
48
42
info:
49
43
image: The name of the image file to use for the component on the website.
50
-
# Step 5: Replace the task_template to the name of the task.
summary: "The solution (ground truth) for the test data"
6
5
info:
7
6
format:
8
7
type: h5ad
9
-
layers:
8
+
layers:
10
9
- type: integer
11
10
name: counts
12
11
description: Raw counts
13
12
required: true
14
-
- type: double
15
-
name: normalized
16
-
description: Normalized counts
17
-
required: true
18
13
obs:
19
14
- type: string
20
-
name: label
21
-
description: Ground truth cell type labels
15
+
name: cell_type
16
+
description: Cell type information
22
17
required: true
23
18
- type: string
24
19
name: batch
25
20
description: Batch information
26
21
required: true
27
-
var:
28
-
- type: boolean
29
-
name: hvg
30
-
description: Whether or not the feature is considered to be a 'highly variable gene'
31
-
required: true
32
22
- type: double
33
-
name: hvg_score
34
-
description: A ranking of the features by hvg.
23
+
name: pseudotime_true
24
+
description: Ground truth pseudotime for each cell/spot.
35
25
required: true
36
26
obsm:
37
27
- type: double
38
-
name: X_pca
39
-
description: The resulting PCA embedding.
28
+
name: X_spatial
29
+
description: Spatial coordinates of each cell/spot.
40
30
required: true
41
31
uns:
42
32
- type: string
@@ -71,3 +61,7 @@ info:
71
61
name: normalization_id
72
62
description: "Which normalization was used"
73
63
required: true
64
+
- type: dataframe
65
+
name: marker_genes
66
+
description: "Marker genes per biological state, with expected ordering along the trajectory (columns: gene_name, biological_state, expected_order). Used by marker-based metrics when provided."
0 commit comments