view 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 source

/*
 * /**
 *****************************************************************************
 *
 * 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;
        
    }
    
}