-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhcr_example.py
More file actions
84 lines (68 loc) · 2.2 KB
/
Copy pathhcr_example.py
File metadata and controls
84 lines (68 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""This example demonstrates how to submit an HCR job."""
from datetime import datetime
import requests
from aind_data_schema_models.modalities import Modality
# Note, the platform field is optional and will be deprecated. If adding a
# platform please use aind-data-transfer-service <= 1.17.2
from aind_data_schema_models.platforms import Platform
from aind_data_transfer_service.models.core import (
SubmitJobRequestV2,
Task,
UploadJobConfigsV2,
)
job_type = "HCR"
acq_datetime = datetime(2025, 3, 10, 12, 0, 9)
num_of_partitions: int = 4
# Add custom job_settings for the hcr image python command.
spim_task = Task(
image_resources={"array": f"0-{num_of_partitions - 1}"},
job_settings={
"input_source": (
"/allen/aind/scratch/svc_aind_upload/test_data_sets/"
"HCR_772646_2025-03-10_12-00-00"
),
"num_of_partitions": num_of_partitions,
},
)
modality_settings = {
Modality.SPIM.abbreviation: spim_task,
}
gather_preliminary_metadata = Task(
job_settings={
"metadata_dir": (
"/allen/aind/scratch/svc_aind_upload/test_data_sets/"
"HCR_772646_2025-03-10_12-00-00"
)
}
)
# The job_type loads defaults settings from AWS Parameter Store
upload_job_configs_v2 = UploadJobConfigsV2(
job_type=job_type,
s3_bucket="open",
project_name="MSMA Platform",
platform=Platform.HCR,
modalities=[Modality.SPIM],
subject_id="772646",
acq_datetime=acq_datetime,
tasks={
"modality_transformation_settings": modality_settings,
"gather_preliminary_metadata": gather_preliminary_metadata,
},
)
upload_jobs = [upload_job_configs_v2]
submit_request = SubmitJobRequestV2(
upload_jobs=upload_jobs,
)
post_request_content = submit_request.model_dump(
mode="json", exclude_none=True
)
# Please use the production endpoint for submitting jobs and the dev endpoint
# for running tests.
# endpoint = "http://aind-data-transfer-service"
endpoint = "http://aind-data-transfer-service-dev" # For testing
submit_job_response = requests.post(
url=f"{endpoint}/api/v2/submit_jobs",
json=post_request_content,
)
print(submit_job_response.status_code)
print(submit_job_response.json())