diff options
| author | Calvin <calvin@EESI> | 2013-03-06 13:02:02 -0500 | 
|---|---|---|
| committer | Calvin <calvin@EESI> | 2013-03-06 13:02:02 -0500 | 
| commit | cbbda6b01a68bbcfcf99b1112735a4b3451e4d42 (patch) | |
| tree | 519715152b85720ca77d1fe2186cdcedd40411ea | |
| parent | 7f6e740ea9a3358f431c80c4db43eacbc6e8778c (diff) | |
fixed index
| -rwxr-xr-x | multifasta_to_otu.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/multifasta_to_otu.py b/multifasta_to_otu.py index f5dbe6a..ad364a5 100755 --- a/multifasta_to_otu.py +++ b/multifasta_to_otu.py @@ -125,7 +125,7 @@ def main():    writer.writerow(fasta_row)    # write out our results -  for i in range(1, np.shape(output)[0]): +  for i in range(0, np.shape(output)[0]):        writer.writerow(list(output[i]))    output_file.close() | 
