All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.lth.immun.mzml.ghost.XChromatogram.scala Maven / Gradle / Ivy

package se.lth.immun.mzml.ghost

class XChromatogram(
		val id:String,
		val q1:Double,
		val q3:Double,
		val ce:Double,
		val intensities:Seq[Double] = List(),
		val times:Seq[Double] = List()
) {
	def length = times.length
	override def toString = "["+q1.toInt+", "+q3.toInt+", "+ce+"] "+times.length+" values"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy