We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently shows usage for a custom client, which doesn't translate to curl / requests / etc.
curl
requests
Correct query for multiple files with requests:
In [15]: r = requests.get('https://ci.kbase.us/services/staging_service/importer ...: _mappings/?file_list=foo.gff.gz&file_list=foo.fa.gz') In [16]: r.json()['mappings'] Out[16]: [[{'id': 'gff_genome', 'title': 'GFF/FASTA Genome', 'app_weight': 1}, {'id': 'gff_metagenome', 'title': 'GFF/FASTA MetaGenome', 'app_weight': 1}], [{'id': 'assembly', 'title': 'Assembly', 'app_weight': 1}, {'id': 'gff_genome', 'title': 'GFF/FASTA Genome', 'app_weight': 1}, {'id': 'gff_metagenome', 'title': 'GFF/FASTA MetaGenome', 'app_weight': 1}]]
The text was updated successfully, but these errors were encountered:
Could also update the endpoint to work in the expected way for curl/requests etc
Compatibility needs to be maintained for https://github.com/kbase/narrative/blob/truss/kbase-extension/static/kbase/js/widgets/narrative_core/upload/stagingAreaViewer.js#L274-L284 https://github.com/kbase/narrative/blob/truss/kbase-extension/static/kbase/js/api/StagingServiceClient.js https://github.com/kbase/narrative/blob/truss/kbase-extension/static/kbase/js/api/RestAPIClient.js
Sorry, something went wrong.
No branches or pull requests
Currently shows usage for a custom client, which doesn't translate to
curl
/requests
/ etc.Correct query for multiple files with
requests
:The text was updated successfully, but these errors were encountered: