File: AbstractRead.java

package info (click to toggle)
artfastqgenerator 0.0.20150519-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 4,916 kB
  • sloc: java: 1,481; sh: 39; makefile: 11
file content (29 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package artificialFastqGenerator;

import java.util.ArrayList;

public abstract class AbstractRead {

	protected ArrayList<Nucleobase> sequence;
	
	/**
	 * Set the sequence of nucleobases from the reference genome which this Read object is a read of.
	 * 
	 * @param sequence
	 */
	
	public void setSequence(ArrayList<Nucleobase> sequence) {
		this.sequence=sequence;
	}

	/**
	 * Return the sequence of nucleobases from the reference genome which this Read object is a read of.
	 * 
	 * @return sequence - the sequence of nucleobases from the reference genome which this Read object is a read of.
	 */
	
	public ArrayList<Nucleobase> getSequence() {
		return this.sequence;
	}

}