# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack.package import * class RMzid(RPackage): """An mzIdentML parser for R. A parser for mzIdentML files implemented using the XML package. The parser tries to be general and able to handle all types of mzIdentML files with the drawback of having less 'pretty' output than a vendor specific parser. Please contact the maintainer with any problems and supply an mzIdentML file so the problems can be fixed quickly.""" bioc = "mzID" version("1.38.0", commit="d87d8b83d27876d3c12cd437499b87a5856f397d") version("1.36.0", commit="d6525edce3389fd4a05ff5fd42e9d611f00a545d") version("1.34.0", commit="bef64db159a0a4d241ba2ba271f70266c1522b2b") version("1.32.0", commit="d4146385b54f4d8361e23fc2c2aef79e952f4730") version("1.28.0", commit="cd006631c8222ce5b4af0577a7401b39cc58fd9c") version("1.22.0", commit="382d9cf11f0cba996911a9d79e193d28f3ac6042") version("1.20.1", commit="819582646944440ddd9ed3724ae964841573e54c") version("1.18.0", commit="7d8924ae95585eb8cf472d21619a7603d291d652") version("1.16.0", commit="fc203832a4cbbbe20f6dd826c6bf2128f2c271c4") version("1.14.0", commit="1c53aa6523ae61d3ebb13381381fc119d6cc6115") depends_on("r-xml", type=("build", "run")) depends_on("r-plyr", type=("build", "run")) depends_on("r-doparallel", type=("build", "run")) depends_on("r-foreach", type=("build", "run")) depends_on("r-iterators", type=("build", "run")) depends_on("r-protgenerics", type=("build", "run"))