diff options
author | Calvin <calvin@EESI> | 2013-06-12 14:08:18 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-06-12 14:08:18 -0400 |
commit | e878d6f10c2c87c76ae33a8c5a0c60ceffe1d03c (patch) | |
tree | 5d8a25e36ac3883e927b0449f9a5c7398c7c4256 | |
parent | 6e42154b7f2aaaf7da298b70dd3227ae12215817 (diff) |
fix missing comma
-rw-r--r-- | src/matlab/quikrCustomTrained.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matlab/quikrCustomTrained.m b/src/matlab/quikrCustomTrained.m index fd8bbc7..9331e06 100644 --- a/src/matlab/quikrCustomTrained.m +++ b/src/matlab/quikrCustomTrained.m @@ -15,7 +15,7 @@ if rows~=4^k error('Wrong k-mer size for input training matrix');
end
-[status, counts]=unix([sprintf('count-kmers -r %d -1 -u ',k) ' ' inputfasta]); %count the k-mers in the fasta file, in the forward direction, return the counts without labels.
+[status, counts]=unix([sprintf('count-kmers -r %d -1 -u ', k) ' ' inputfasta]); %count the k-mers in the fasta file, in the forward direction, return the counts without labels.
if status ~= 0
error('count-kmers failed: ensure count-kmers is in your path.');
end
|