From 442f2ca145c96c3988c8de136814dbf9edf89899 Mon Sep 17 00:00:00 2001 From: Thomas Yu Date: Thu, 29 Jan 2026 01:00:08 -0800 Subject: [PATCH 1/3] [SYNPY-1702] Clarify folder_id comment in metadata_curation.md Clarify folder_id comment in metadata_curation --- docs/guides/extensions/curator/metadata_curation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/extensions/curator/metadata_curation.md b/docs/guides/extensions/curator/metadata_curation.md index 4f7d336c8..5956257fa 100644 --- a/docs/guides/extensions/curator/metadata_curation.md +++ b/docs/guides/extensions/curator/metadata_curation.md @@ -73,7 +73,7 @@ Use this when metadata describes individual data files and is stored as annotati record_set, curation_task, data_grid = create_record_based_metadata_task( synapse_client=syn, project_id="syn123456789", # Your project ID - folder_id="syn987654321", # Folder where files are stored + folder_id="syn987654321", # Folder where RecordSet Entity will be stored record_set_name="AnimalMetadata_Records", record_set_description="Centralized metadata for animal study data", curation_task_name="AnimalMetadata_Curation", # Must be unique within the project From 4a89bc57c25d22749ee30dca0925f27d5c40cd5a Mon Sep 17 00:00:00 2001 From: Thomas Yu Date: Thu, 29 Jan 2026 01:01:47 -0800 Subject: [PATCH 2/3] Change this to False --- docs/guides/extensions/curator/metadata_curation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/extensions/curator/metadata_curation.md b/docs/guides/extensions/curator/metadata_curation.md index 5956257fa..9e8d64d39 100644 --- a/docs/guides/extensions/curator/metadata_curation.md +++ b/docs/guides/extensions/curator/metadata_curation.md @@ -104,7 +104,7 @@ entity_view_id, task_id = create_file_based_metadata_task( folder_id="syn987654321", # Folder containing your data files curation_task_name="FileMetadata_Curation", # Must be unique within the project instructions="Annotate each file with metadata according to the schema requirements.", - attach_wiki=True, # Creates a wiki in the folder with the entity view (Defaults to False) + attach_wiki=False, # Creates a wiki in the folder with the entity view (Defaults to False) entity_view_name="Animal Study Files View", schema_uri=schema_uri # Schema found in Step 2 ) From 05087486ccf6fb835d4d8eff53209ae10a004e43 Mon Sep 17 00:00:00 2001 From: Thomas Yu Date: Thu, 29 Jan 2026 01:04:18 -0800 Subject: [PATCH 3/3] Update documentation --- synapseclient/extensions/curator/record_based_metadata_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapseclient/extensions/curator/record_based_metadata_task.py b/synapseclient/extensions/curator/record_based_metadata_task.py index d35b084ef..8dd984938 100644 --- a/synapseclient/extensions/curator/record_based_metadata_task.py +++ b/synapseclient/extensions/curator/record_based_metadata_task.py @@ -154,7 +154,7 @@ def create_record_based_metadata_task( Arguments: project_id: The Synapse ID of the project where the folder exists. - folder_id: The Synapse ID of the folder to upload to. + folder_id: The Synapse ID of the folder to upload RecordSet to. record_set_name: Name for the RecordSet. record_set_description: Description for the RecordSet. curation_task_name: Name for the CurationTask (used as data_type field).