Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diego-d5000/xmenapi

API test with grails to know if an DNA is mutant
https://github.com/diego-d5000/xmenapi

Last synced: about 2 months ago
JSON representation

API test with grails to know if an DNA is mutant

Awesome Lists containing this project

README

        

# XmenApi
API test with grails to know if an DNA is mutant

example request:
```
Method: POST
URL: https://mutantdetectorapi.herokuapp.com/analyzer/index
Data-Type: text/json
Data: ' ["ATGCGAA", "CAGTGC", "TTATGT", "AGAAGG", "CCCCTA", "TCACTG"] '
```

example python script:

```
>>> import request
>>> import json

>>> r = requests.post("https://mutantdetectorapi.herokuapp.com/analyzer/index", json=['AAAA', 'AAAA', 'AAAA', 'AAAA'])
>>> r

>>> r.text
'{"results":"true","status":"OK"}'
>>>

```