Skip to content
Snippets Groups Projects
Commit b6e78a5c authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Fix typo

parent 03d1f4f9
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ object SeqStat extends ToolCommand {
*
* @param record FastqRecord
*/
def procesRead(record: FastqRecord): Unit = {
def processRead(record: FastqRecord): Unit = {
// Adjust/expand the length of baseStat case classes to the size of current
// read if the current list is not long enough to store the data
......@@ -166,7 +166,7 @@ object SeqStat extends ToolCommand {
def seqStat(fqreader: FastqReader): Long = {
var numReads: Long = 0
for (read <- fqreader.iterator.asScala) {
procesRead(read)
processRead(read)
numReads += 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment