/* * Copyright (c) 2012. The Genome Analysis Centre, Norwich, UK * MISO project contacts: Robert Davey, Mario Caccamo @ TGAC * ********************************************************************* * * This file is part of MISO. * * MISO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MISO is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MISO. If not, see <http://www.gnu.org/licenses/>. * * ********************************************************************* */ package uk.ac.bbsrc.tgac.miso.core.data; //import com.fasterxml.jackson.annotation.*; //import com.fasterxml.jackson.databind.annotation.JsonSerialize; import org.codehaus.jackson.annotate.JsonBackReference; import org.codehaus.jackson.annotate.JsonIgnoreProperties; import org.codehaus.jackson.annotate.JsonTypeInfo; import org.codehaus.jackson.map.annotate.JsonSerialize; import uk.ac.bbsrc.tgac.miso.core.exception.MalformedLibraryException; /** * A QC that is specifically carried out on a given {@link Library} * * @author Rob Davey * @since 0.0.2 */ @JsonSerialize(typing = JsonSerialize.Typing.STATIC, include = JsonSerialize.Inclusion.NON_NULL) //@JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class, property = "@id") @JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, include= JsonTypeInfo.As.PROPERTY, property="@class") //@JsonIgnoreProperties({"library","deletable"}) public interface LibraryQC extends QC { /** * Returns the library of this LibraryQC object. * * @return Library library. */ @JsonBackReference(value="qclibrary") public Library getLibrary(); /** * Sets the library of this LibraryQC object. * * @param library library. * @throws MalformedLibraryException when the Library being set is not valid */ public void setLibrary(Library library) throws MalformedLibraryException; /** * Returns the insertSize (in base pairs) of this LibraryQC object. * * @return Integer insertSize. */ public Integer getInsertSize(); /** * Sets the insertSize (in base pairs) of this LibraryQC object. * * @param insertSize insertSize. * */ public void setInsertSize(Integer insertSize); /** * Returns the results of this QC object. * * @return Double results. */ public Double getResults(); /** * Sets the results of this QC object. * * @param results results. */ public void setResults(Double results); }