Merge pull request #4316 from RosettaCommons/roccomoretti/mover_filter_map_remove
Remove Movers_map and Filters_map from the Mover/Filter parse_my_tag interface.
There's no actual reason to have a Movers_map and Filters_map separate from the DataMap we pass to parse_my_tag(), it's simply a historical artifact. Removing them (and placing their data into the DataMap) allows us to reduce the importance of Filters in RosettaScripts, and also will allow us to use Movers/Filters as parameters in setting up more complex ResidueSelectors, SimpleMetrics, etc.
This PR removes the Mover & Filters map from the main interface for parse_my_tag(), going from 5 parameters to 3.
This is merge one of a two part merge, where the second merge removes the pose parameter. That should hopefully be merged in shortly.