@@ -72,6 +72,19 @@ If username and password are used instead, a token fetching request will be done
72
72
- Accepts a file path string and returns a response containing the analysis task ID
73
73
- ` upload_sample_from_file `
74
74
- Accepts a file open in 'rb' mode and returns a response containing the analysis task ID
75
+ - ` upload_sample_from_url `
76
+ - Accepts a url and returns a response containing the analysis task ID
77
+ - ` check_submitted_url_status `
78
+ - Accepts a task id returned by upload_sample_from_url and returns a response containing processing status and
79
+ report if the report is ready
80
+ - ` get_submitted_url_report `
81
+ - Accepts a task ID returned by upload_sample_from_url and returns a response
82
+ - This method utilizes the set number of retries and wait time in seconds to time
83
+ out if the analysis results are not ready
84
+ - ` upload_sample_from_url_and_get_report `
85
+ - Accepts a url and returns a response containing the analysis report
86
+ - The result fetching action of this method utilizes the set number of retries and wait time in seconds to time
87
+ out if the analysis results are not ready
75
88
- ` get_summary_report_v2 `
76
89
- Accepts a single hash or a list of hashes and returns JSON containing a summary report for each of them
77
90
- This method utilizes the set number of retries and wait time in seconds to time
@@ -106,6 +119,12 @@ If username and password are used instead, a token fetching request will be done
106
119
- ` check_sample_removal_status_v2 `
107
120
- "Accepts the task ID returned by the bulk sample removal endpoint and returns a response that
108
121
indicates if the removal request was finished successfully and if all samples have been deleted
122
+ - ` get_user_tags_for_a_sample `
123
+ - Accepts a single hash string and returns lists of existing user tags for the requested sample
124
+ - ` post_user_tags_for_a_sample `
125
+ - Accepts a single hash string and adds one or more user tags to the requested sample
126
+ - ` delete_user_tags_for_a_sample `
127
+ - Accepts a single hash string and removes one or more user tags from the requested sample
109
128
- ` advanced_search_v2 `
110
129
- Sends a query string to the A1000 Advanced Search API v2
111
130
- ` advanced_search_v2_aggregated `
0 commit comments