the 'check' endpoint on the CATH funfhmmer API currently requires the header accept: application/json. If this header is not present then an error is returned:
"Content-Type text/html had a problem with your request.
***ERROR***
Couldn't render template "search/search_sequence_funfams_results.tt: file error - search/search_sequence_results.tt: not found"
This is due to REST::ForBrowser attempting to return a web page. Either we provide a valid web page or we always render application/json.
the 'check' endpoint on the CATH funfhmmer API currently requires the header
accept: application/json
. If this header is not present then an error is returned:This is due to REST::ForBrowser attempting to return a web page. Either we provide a valid web page or we always render
application/json
.