Skip to content

Commit

Permalink
cleaned up scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jul 9, 2010
1 parent 9748e62 commit 5bab290
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 501 deletions.
72 changes: 0 additions & 72 deletions scripts/collision.py

This file was deleted.

3 changes: 1 addition & 2 deletions scripts/ctb-iterative-bench-2.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@

print 'filtering...'
minmax = ht.fasta_file_to_minmax(this_filename, total_reads)
readmask = ht.filter_fasta_file_any(this_filename, minmax,
5, readmask)
readmask = ht.filter_fasta_file_any(minmax, 5, readmask)

n_seq_kept = readmask.n_kept()

Expand Down
91 changes: 0 additions & 91 deletions scripts/fasta-consume.py

This file was deleted.

27 changes: 0 additions & 27 deletions scripts/fasta-filter.py

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/filter-exact.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
print 'filtering...'

minmax = ht.fasta_file_to_minmax(infilename, total_reads)
readmask = ht.filter_fasta_file_any(infilename, minmax, MIN_ABUNDANCE)
readmask = ht.filter_fasta_file_any(minmax, MIN_ABUNDANCE)

print 'keeping %d reads' % readmask.n_kept()

Expand Down
2 changes: 1 addition & 1 deletion scripts/filter-inexact-all.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
print 'filtering...'

minmax = ht.fasta_file_to_minmax(infilename, total_reads)
readmask = ht.filter_fasta_file_all(infilename, minmax, MIN_ABUNDANCE)
readmask = ht.filter_fasta_file_all(minmax, MIN_ABUNDANCE)

print 'keeping %d reads' % readmask.n_kept()

Expand Down
2 changes: 1 addition & 1 deletion scripts/filter-inexact-any.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
print 'filtering...'

minmax = ht.fasta_file_to_minmax(infilename, total_reads)
readmask = ht.filter_fasta_file_any(infilename, minmax, MIN_ABUNDANCE)
readmask = ht.filter_fasta_file_any(minmax, MIN_ABUNDANCE)

print 'keeping %d reads' % readmask.n_kept()

Expand Down
35 changes: 0 additions & 35 deletions scripts/filter-iowa.py

This file was deleted.

85 changes: 0 additions & 85 deletions scripts/iowa-filter-fa.py

This file was deleted.

Loading

0 comments on commit 5bab290

Please sign in to comment.