Skip to content

Commit d128f0b

Browse files
author
Lingling Peng
committed
add to pre-requisite
1 parent 5b8b11c commit d128f0b

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

docs/guides/extensions/curator/metadata_curation.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ By following this guide, you will:
1818
- Python environment with synapseclient and the `curator` extension installed (ie. `pip install --upgrade "synapseclient[curator]"`)
1919
- An existing Synapse project and folder where you want to manage metadata
2020
- A JSON Schema registered in Synapse (many schemas are already available for Sage-affiliated projects, or you can register your own by following the [JSON Schema tutorial](../../../tutorials/python/json_schema.md))
21+
- (Optional) An existing Synapse team if you want multiple users to collaborate on the same Grid session. Pass the team's ID as `assignee_principal_id` when creating the curation task.
2122

2223
## Step 1: Authenticate and import required functions
2324

@@ -69,8 +70,6 @@ all_schemas = query_schema_registry(
6970

7071
Use this when metadata describes individual data files and is stored as annotations directly on each file.
7172

72-
**Team collaboration**: To enable multiple users to collaborate on a Grid session, assign the task to a Synapse team using `assignee_principal_id`. The team must exist before creating the task for collaboration on a grid.
73-
7473
```python
7574
record_set, curation_task, data_grid = create_record_based_metadata_task(
7675
synapse_client=syn,
@@ -101,8 +100,6 @@ print(f"Created CurationTask: {curation_task.task_id}")
101100

102101
Use this when metadata is normalized in structured records to eliminate duplication and ensure consistency.
103102

104-
**Team collaboration**: To enable multiple users to collaborate on a Grid session, assign the task to a Synapse team using `assignee_principal_id`. The team must exist before creating the task for collaboration on a grid.
105-
106103
```python
107104
entity_view_id, task_id = create_file_based_metadata_task(
108105
synapse_client=syn,

0 commit comments

Comments
 (0)