Mercurial > repos > jfb > kinamine7_7
diff KinaMine-Galaxy-7-7/src/kinamine/Motif.java @ 0:67635b462045 draft
Uploaded
author | jfb |
---|---|
date | Tue, 20 Feb 2018 14:31:15 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/KinaMine-Galaxy-7-7/src/kinamine/Motif.java Tue Feb 20 14:31:15 2018 -0500 @@ -0,0 +1,41 @@ +/* + * /** + ***************************************************************************** + * + * Copyright (c) Regents of the University of Minnesota. All Rights Reserved. + * + * + * Author: Kevin Murray University of Minnesota - (murra668@umn.edu) + * + ***************************************************************************** + */ + + +package kinamine; + +import java.util.ArrayList; + +/** + * + * @author murra668 + */ +public class Motif { + + public String seq; + + public int index; + + public String ref; + + public ArrayList<String> regenSeqs; + + public Motif(String seq, String ref, int index, ArrayList<String> seqs){ + + this.seq = seq; + this.ref = ref; + this.index = index; + this.regenSeqs = seqs; + + } + +}