Skip to content

Commit

Permalink
POD cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveMessina committed Feb 17, 2011
1 parent fb96d77 commit 5134fd0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 17 deletions.
28 changes: 19 additions & 9 deletions bin/bloombuild.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,29 @@
# Builds Bloom filters with a given K-mer length, false positive rate
# and reference in a FASTA format

=head1 NAME
bloombuild - build Bloom filters from reference genomes in FASTA files.
=head1 SYNOPSIS
BloomBuild reference
bloombuild [options] -r reference.fasta
Build Bloom filters from reference genomes in fasta files. These
can later be queried using FACS.
=head1 DESCRIPTION
-r/--reference A file containing a list of filenames for reference genome data. Each line contains a filename.
Each file is a Fasta file. (defaults to STDIN)
Build Bloom filters from reference genomes in fasta files. These
can later be queried using FACS.
NOTE: Presently the Bloom::FASTER module has problems
with garbage collection which only enables one reference to built each time the program loads.
Supplying references in batch might cause a high false positive rate.
-r/--reference A file containing a list of filenames for reference genome data.
Each line contains a filename.
Each file is a Fasta file. (defaults to STDIN)
NOTE: Presently the Bloom::FASTER module has problems
with garbage collection which only enables one reference to built each time
the program loads. Supplying references in batch might cause a high false
positive rate.
=head1 OPTIONS
-os/--outfile Output suffix for the created Bloom filter (defaults to .obj)
Expand All @@ -27,7 +37,7 @@ =head1 SYNOPSIS
-dbpo/--databsepath The unixpath to the output directory (defaults to STDIN)
I/O
=head1 I/O
Input format (FASTA/Pearson)
Output format (Bloom filter)
Expand Down
10 changes: 6 additions & 4 deletions bin/facs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ =head1 NAME
facs - Filter reads of DNA
=head2 SYNOPSIS
=head1 SYNOPSIS
facs k bloomfilterlist queryfile outprefix
=head1 DESCRIPTION
Build Bloom filters from reference genomes in fasta files using bloombuild.pl. These
can later be queried using FACS.
Expand All @@ -31,7 +33,7 @@ =head2 SYNOPSIS
2. Reads not matching any reference
=head3 Arguments
=head1 Arguments
-b/--bloomfilter A file containing a list of filenames for already created bloom filters. Each line contains the file name of the specific bloom filter. (defaults to STDIN)
Expand All @@ -57,13 +59,13 @@ =head3 Arguments
Note: You have to use the same false positive rate and K-mer length as was used when the bloom filters were created.
=head4 I/O
=head1 I/O
Input format (FASTA/Pearson)
Output format (FASTA/Pearson)
=head5 SEE ALSO
=head1 SEE ALSO
bloombuild
Expand Down
8 changes: 4 additions & 4 deletions bin/facs_batch.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ =head1 NAME
facs - Filter reads of DNA
=head2 SYNOPSIS
=head1 SYNOPSIS
facs queryfile -b bloomfilterlist
=head3 DESCRIPTION
=head1 DESCRIPTION
Build Bloom filters from reference genomes in fasta files using bloombuild.pl. These
can later be queried using FACS.
Expand Down Expand Up @@ -61,13 +61,13 @@ =head3 COMMANDS AND OPTIONS
Note: You have to use the same false positive rate and K-mer length as was used when the bloom filters were created.
=head4 I/O
=head1 I/O
Input format (FASTA/Pearson)
Output format (FASTA/Pearson)
=head5 SEE ALSO
=head1 SEE ALSO
bloombuild
Expand Down

0 comments on commit 5134fd0

Please sign in to comment.