Page MenuHomec4science

RequestSNPandHLA.java
No OneTemporary

File Metadata

Created
Tue, Feb 11, 16:18

RequestSNPandHLA.java

package framework.request;
import java.util.ArrayList;
import framework.MarkerEncrypted;
import framework.Type;
public class RequestSNPandHLA extends Request {
/** The markers. */
private ArrayList<MarkerEncrypted> markers;
/** The clinical factors. */
private ArrayList<Integer> cfs;
public RequestSNPandHLA(int id_p, int id_mu, int id_t) {
super(Type.SNP, id_p, id_mu, id_t);
}
public RequestSNPandHLA(int id_p, int id_mu, int id_t,
ArrayList<MarkerEncrypted> markers, ArrayList<Integer> cfs) {
super(Type.SNP, id_p, id_mu, id_t);
this.markers = markers;
this.cfs = cfs;
}
public ArrayList<MarkerEncrypted> getMarkers() {
return markers;
}
public void setMarkers(ArrayList<MarkerEncrypted> markers) {
this.markers = markers;
}
public ArrayList<Integer> getCfs() {
return cfs;
}
public void setCfs(ArrayList<Integer> cfs) {
this.cfs = cfs;
}
}

Event Timeline