All URIs are relative to http://test.jaqpot.org:8081/jaqpot/services
Method | HTTP request | Description |
---|---|---|
createBundle | POST /enm/bundle | Creates Bundle |
createDatasetByStudies | POST /enm/dataset | Creates Dataset |
getDescriptorCategories | GET /enm/descriptor/categories | Retrieves descriptor calculation categories |
getPropertyCategories | GET /enm/property/categories | Retrieves property categories |
String createBundle(body, subjectid)
Creates Bundle
Reads Substances from SubstanceOwner and creates Bundle.
// Import classes:
//import jaqpot.client.ApiException;
//import jaqpot.client.api.EnmApi;
EnmApi apiInstance = new EnmApi();
BundleData body = new BundleData(); // BundleData | Data for bundle creation
String subjectid = "subjectid_example"; // String |
try {
String result = apiInstance.createBundle(body, subjectid);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EnmApi#createBundle");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
body | BundleData | Data for bundle creation | |
subjectid | String | [optional] |
String
No authorization required
- Content-Type: application/json
- Accept: application/json, text/uri-list
Task createDatasetByStudies(data, subjectid)
Creates Dataset
Reads Studies from Bundle's Substances, creates Dateaset,calculates Descriptors, returns Dataset
// Import classes:
//import jaqpot.client.ApiException;
//import jaqpot.client.api.EnmApi;
EnmApi apiInstance = new EnmApi();
DatasetData data = new DatasetData(); // DatasetData |
String subjectid = "subjectid_example"; // String |
try {
Task result = apiInstance.createDatasetByStudies(data, subjectid);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EnmApi#createDatasetByStudies");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
data | DatasetData | [optional] | |
subjectid | String | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json, text/uri-list
List<Object> getDescriptorCategories()
Retrieves descriptor calculation categories
// Import classes:
//import jaqpot.client.ApiException;
//import jaqpot.client.api.EnmApi;
EnmApi apiInstance = new EnmApi();
try {
List<Object> result = apiInstance.getDescriptorCategories();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EnmApi#getDescriptorCategories");
e.printStackTrace();
}
This endpoint does not need any parameter.
List<Object>
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Map<String, Object> getPropertyCategories()
Retrieves property categories
// Import classes:
//import jaqpot.client.ApiException;
//import jaqpot.client.api.EnmApi;
EnmApi apiInstance = new EnmApi();
try {
Map<String, Object> result = apiInstance.getPropertyCategories();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EnmApi#getPropertyCategories");
e.printStackTrace();
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: Not defined