def skip_requirements_option(): """List of requirements to skip""" return planemo_option( "--skip_requirements", default='python,r-base,perl', help= "Comma-separated list of requirements which should be not be updated. Default is python,r-base,perl." )
def skiplist_option(): """List of XML files to skip""" return planemo_option( "--skiplist", default=None, help= "Skiplist file, containing a list of tools for which autoupdate should be skipped." )
def test_option(): """Test updated XML files""" return planemo_option("--test", is_flag=True, help="Test updated XML files.")
def dry_run_option(): """Perform a dry run autoupdate without modifying the XML files""" return planemo_option( "--dry-run", is_flag=True, help="Perform a dry run autoupdate without modifying the XML files.")