All URIs are relative to https://localhost/api
Method | HTTP request | Description |
---|---|---|
getFeaturesWithinResource | GET /genome/features/within/{build}/{reference}/{begin}/{end} | Returns list of matches |
List<SequenceFeature> getFeaturesWithinResource(begin, build, reference, end)
Returns list of matches
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.GenomefeaturesApi;
GenomefeaturesApi apiInstance = new GenomefeaturesApi();
String begin = "begin_example"; // String |
String build = "build_example"; // String |
String reference = "reference_example"; // String |
String end = "end_example"; // String |
try {
List<SequenceFeature> result = apiInstance.getFeaturesWithinResource(begin, build, reference, end);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling GenomefeaturesApi#getFeaturesWithinResource");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
begin | String | ||
build | String | ||
reference | String | ||
end | String |
No authorization required
- Content-Type: application/json
- Accept: application/json