File tree Expand file tree Collapse file tree
api-src/org/labkey/api/sequenceanalysis/model
src/org/labkey/sequenceanalysis Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,5 +56,7 @@ public interface ReadData extends Serializable
5656
5757 public Integer getModifiedBy ();
5858
59+ public String getSra_accession ();
60+
5961 public boolean isArchived ();
6062}
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ public class ReadDataImpl implements ReadData
3131 private Integer _modifiedBy ;
3232 private Integer _runId ;
3333 private boolean _archived = false ;
34+ private String sra_accession ;
3435
3536 private Map <Integer , File > _cachedFiles = new HashMap <>();
3637
@@ -259,4 +260,15 @@ public void setArchived(boolean archived)
259260 {
260261 _archived = archived ;
261262 }
263+
264+ @ Override
265+ public String getSra_accession ()
266+ {
267+ return sra_accession ;
268+ }
269+
270+ public void setSra_accession (String sra_accession )
271+ {
272+ this .sra_accession = sra_accession ;
273+ }
262274}
You can’t perform that action at this time.
0 commit comments