Skip to content

Commit

Permalink
added package level doc strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyStiles committed Jan 31, 2024
1 parent 2328911 commit c70c32d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions search/bwt/bwt.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
Package bwt is a package for performing burrows-wheeler transforms on sequences.
The BWT is a lossless compression algorithm that can be used to reduce the memory
footprint of a sequence while still maintaining the ability to search, align, and
extract the original sequence. This is useful for sequences so large that it would
be beneficial to reduce its memory footprint while also maintaining a way to analyze
and work with the sequence. BWT is used in both bioinformatics(burrows wheeler alignment)
and data compression (bzip2).
*/
package bwt

import (
Expand Down
8 changes: 8 additions & 0 deletions search/search.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
Package search provides utilities for searching sequence data.
*/
package search

/*
This package is supposed to be empty and only exists to provide a doc string.
*/

0 comments on commit c70c32d

Please sign in to comment.