annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
67635b462045 Uploaded
jfb
parents:
diff changeset
1 /*
67635b462045 Uploaded
jfb
parents:
diff changeset
2 * /**
67635b462045 Uploaded
jfb
parents:
diff changeset
3 *****************************************************************************
67635b462045 Uploaded
jfb
parents:
diff changeset
4 *
67635b462045 Uploaded
jfb
parents:
diff changeset
5 * Copyright (c) Regents of the University of Minnesota. All Rights Reserved.
67635b462045 Uploaded
jfb
parents:
diff changeset
6 *
67635b462045 Uploaded
jfb
parents:
diff changeset
7 *
67635b462045 Uploaded
jfb
parents:
diff changeset
8 * Author: Kevin Murray University of Minnesota - (murra668@umn.edu)
67635b462045 Uploaded
jfb
parents:
diff changeset
9 *
67635b462045 Uploaded
jfb
parents:
diff changeset
10 *****************************************************************************
67635b462045 Uploaded
jfb
parents:
diff changeset
11 */
67635b462045 Uploaded
jfb
parents:
diff changeset
12
67635b462045 Uploaded
jfb
parents:
diff changeset
13
67635b462045 Uploaded
jfb
parents:
diff changeset
14 package kinamine;
67635b462045 Uploaded
jfb
parents:
diff changeset
15
67635b462045 Uploaded
jfb
parents:
diff changeset
16 import java.util.ArrayList;
67635b462045 Uploaded
jfb
parents:
diff changeset
17
67635b462045 Uploaded
jfb
parents:
diff changeset
18 /**
67635b462045 Uploaded
jfb
parents:
diff changeset
19 *
67635b462045 Uploaded
jfb
parents:
diff changeset
20 * @author murra668
67635b462045 Uploaded
jfb
parents:
diff changeset
21 */
67635b462045 Uploaded
jfb
parents:
diff changeset
22 public class Motif {
67635b462045 Uploaded
jfb
parents:
diff changeset
23
67635b462045 Uploaded
jfb
parents:
diff changeset
24 public String seq;
67635b462045 Uploaded
jfb
parents:
diff changeset
25
67635b462045 Uploaded
jfb
parents:
diff changeset
26 public int index;
67635b462045 Uploaded
jfb
parents:
diff changeset
27
67635b462045 Uploaded
jfb
parents:
diff changeset
28 public String ref;
67635b462045 Uploaded
jfb
parents:
diff changeset
29
67635b462045 Uploaded
jfb
parents:
diff changeset
30 public ArrayList<String> regenSeqs;
67635b462045 Uploaded
jfb
parents:
diff changeset
31
67635b462045 Uploaded
jfb
parents:
diff changeset
32 public Motif(String seq, String ref, int index, ArrayList<String> seqs){
67635b462045 Uploaded
jfb
parents:
diff changeset
33
67635b462045 Uploaded
jfb
parents:
diff changeset
34 this.seq = seq;
67635b462045 Uploaded
jfb
parents:
diff changeset
35 this.ref = ref;
67635b462045 Uploaded
jfb
parents:
diff changeset
36 this.index = index;
67635b462045 Uploaded
jfb
parents:
diff changeset
37 this.regenSeqs = seqs;
67635b462045 Uploaded
jfb
parents:
diff changeset
38
67635b462045 Uploaded
jfb
parents:
diff changeset
39 }
67635b462045 Uploaded
jfb
parents:
diff changeset
40
67635b462045 Uploaded
jfb
parents:
diff changeset
41 }