rnalysis.filtering.Pipeline.remove_last_function

Pipeline.remove_last_function()

Removes from the Pipeline the last function that was added to it. Removal is in-place.

Examples
>>> from rnalysis import filtering
>>> pipe = filtering.Pipeline()
>>> pipe.add_function(filtering.Filter.filter_missing_values)
Added function 'Filter.filter_missing_values()' to the pipeline.
>>> pipe.remove_last_function()
Removed function filter_missing_values with parameters [] from the pipeline.