Implemented parameter for CDR1 frequency

This commit is contained in:
2021-11-18 11:55:54 -06:00
parent 4157cfb556
commit 2064d7e9fc
4 changed files with 19 additions and 22 deletions

View File

@@ -3,15 +3,21 @@ import java.util.List;
public class CellSample {
private List<Integer[]> cells;
private Integer cdr1Freq;
public CellSample(List<Integer[]> cells){
public CellSample(List<Integer[]> cells, Integer cdr1Freq){
this.cells = cells;
this.cdr1Freq = cdr1Freq;
}
public List<Integer[]> getCells(){
return cells;
}
public Integer getCdr1Freq() {
return cdr1Freq;
}
public Integer population(){
return cells.size();
}