Mercurial > repos > jfb > kinamine7_7
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:67635b462045 |
---|---|
1 /* | |
2 * /** | |
3 ***************************************************************************** | |
4 * | |
5 * Copyright (c) Regents of the University of Minnesota. All Rights Reserved. | |
6 * | |
7 * | |
8 * Author: Kevin Murray University of Minnesota - (murra668@umn.edu) | |
9 * | |
10 ***************************************************************************** | |
11 */ | |
12 | |
13 | |
14 package kinamine; | |
15 | |
16 import java.util.ArrayList; | |
17 | |
18 /** | |
19 * | |
20 * @author murra668 | |
21 */ | |
22 public class Motif { | |
23 | |
24 public String seq; | |
25 | |
26 public int index; | |
27 | |
28 public String ref; | |
29 | |
30 public ArrayList<String> regenSeqs; | |
31 | |
32 public Motif(String seq, String ref, int index, ArrayList<String> seqs){ | |
33 | |
34 this.seq = seq; | |
35 this.ref = ref; | |
36 this.index = index; | |
37 this.regenSeqs = seqs; | |
38 | |
39 } | |
40 | |
41 } |