v0.16.0
-
Added support for Galaxy release 21.05.
-
Replaced the
job_info
parameter with separatetool_id
,inputs
andstate
parameters inJobsClient.search_jobs()
(thanks to
rikeshi). -
Pass the API key for all requests as the
x-api-key
header instead of as a parameter (thanks to rikeshi). -
Try prepending https:// and http:// if the scheme is missing in the
url
parameter ofGalaxyClient
, i.e. when initialising a Galaxy or ToolShed instance. -
Added a new
dataset_collections
attribute toGalaxyInstance
objects, which is an instance of the newDatasetCollectionClient
. This new module can be used to get details of a dataset collection, wait until elements of a dataset collection are in a terminal state, and download a history dataset collection as an archive (thanks to rikeshi). -
Added a new
tool_dependencies
attribute toGalaxyInstance
objects, which is an instance of the newToolDependenciesClient
. This new module can be used to summarize requirements across toolbox (thanks to cat-bro). -
Added
publish_dataset()
update_permissions()
andwait_for_dataset()
methods toDatasetClient
. -
Added
get_invocation_biocompute_object()
,get_invocation_report_pdf()
,get_invocation_step_jobs_summary()
,rerun_invocation()
andwait_for_invocation()
methods toInvocationClient
(thanks to rikeshi). -
Added
cancel_job()
,get_common_problems()
,get_destination_params()
,get_inputs()
,get_outputs()
,resume_job()
,show_job_lock()
,update_job_lock()
andwait_for_job()
methods toJobsClient
(thanks to Andrew Mcgregor and rikeshi). -
Added
get_citations()
anduninstall_dependencies()
methods toToolClient
(thanks to rikeshi). -
Added
extract_workflow_from_history()
,refactor_workflow()
andshow_versions()
methods toWorkflowClient
(thanks to rikeshi). -
Added several parameters to
DatasetClient.get_datasets()
method (thanks to rikeshi). -
Added several parameters to
InvocationClient.get_invocations()
method (thanks to Nolan Woods and rikeshi). -
Added several parameters to
JobsClient.get_jobs()
method (thanks to rikeshi). -
Added
parameters_normalized
parameter toWorkflowClient.invoke_workflow()
method (thanks to rikeshi). -
Deprecated
folder_id
parameter ofLibraryClient.get_folders()
method. -
Deprecated
library_id
parameter ofLibraryClient.get_libraries()
method. -
Deprecated
tool_id
parameter ofToolClient.get_tools()
method. -
Deprecated
workflow_id
parameter ofWorkflowClient.get_workflows()
method. -
BioBlend.objects: Removed deprecated
container_id
property ofDataset
andFolder
objects. -
BioBlend.objects: Removed
Preview
abstract class. -
BioBlend.objects: Added
invoke()
method toWorkflow
. AddedObjInvocationClient
, andInvocation
andInvocationPreview
wrappers (thanks to rikeshi). -
BioBlend.objects: Added
latest_workflow_uuid
property toWorkflow
objects. Addeddeleted
,latest_workflow_uuid
,number_of_steps
,owner
andshow_in_tool_panel
properties toWorkflowPreview
(thanks to Nolan Woods). -
BioBlend.objects: Deprecated
run()
method ofWorkflow
. -
Added
use_ssl
,verify
andauthuser
parameters toCloudManInstance.__init__()
(thanks to Nathan Edwards). -
Improvements to type annotations, tests and documentation (thanks to rikeshi).