Skip to content

Commit

Permalink
Change project name
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Mar 29, 2012
1 parent e134608 commit a4d7bff
Show file tree
Hide file tree
Showing 113 changed files with 351 additions and 351 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

##Installation

$ go get github.com/kortschak/BioGo/...
$ go get github.com/kortschak/biogo/...

##Overview

Expand Down
2 changes: 1 addition & 1 deletion align/align.go
Expand Up @@ -17,7 +17,7 @@ package align
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/seq"
)

type Aligner interface {
Expand Down
2 changes: 1 addition & 1 deletion align/nw/example_test.go
Expand Up @@ -17,7 +17,7 @@ package nw

import (
"fmt"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/seq"
)

func ExampleAligner_Align() {
Expand Down
6 changes: 3 additions & 3 deletions align/nw/nw.go
Expand Up @@ -17,9 +17,9 @@ package nw
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
)

// Default character table lookups.
Expand Down
2 changes: 1 addition & 1 deletion align/nw/nw_test.go
Expand Up @@ -16,7 +16,7 @@ package nw
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/io/seqio/fasta"
"github.com/kortschak/biogo/io/seqio/fasta"
check "launchpad.net/gocheck"
"testing"
)
Expand Down
6 changes: 3 additions & 3 deletions align/pals/dp/align.go
Expand Up @@ -17,9 +17,9 @@ package dp
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/align/pals/filter"
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/align/pals/filter"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/seq"
"sort"
)

Expand Down
8 changes: 4 additions & 4 deletions align/pals/dp/dp_test.go
Expand Up @@ -16,10 +16,10 @@ package dp
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/align/pals/filter"
"github.com/kortschak/BioGo/align/sw"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/align/pals/filter"
"github.com/kortschak/biogo/align/sw"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
check "launchpad.net/gocheck"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions align/pals/dp/kernel.go
Expand Up @@ -16,8 +16,8 @@ package dp
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/align/pals/filter"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/align/pals/filter"
"github.com/kortschak/biogo/seq"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions align/pals/dp/lookup.go
Expand Up @@ -16,8 +16,8 @@ package dp
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/util"
)

var lookUp util.CTL
Expand Down
8 changes: 4 additions & 4 deletions align/pals/filter/filter.go
Expand Up @@ -19,10 +19,10 @@ package filter
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/morass"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/morass"
"github.com/kortschak/biogo/seq"
)

// Ukonnen's Lemma: U(n, q, 𝛜) := (n + 1) - q(⌊𝛜n⌋ + 1)
Expand Down
8 changes: 4 additions & 4 deletions align/pals/filter/filter_test.go
Expand Up @@ -16,10 +16,10 @@ package filter
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/morass"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/morass"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
check "launchpad.net/gocheck"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions align/pals/filter/lookup.go
Expand Up @@ -16,8 +16,8 @@ package filter
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/util"
)

var lookUp util.CTL
Expand Down
4 changes: 2 additions & 2 deletions align/pals/filter/merge.go
Expand Up @@ -16,8 +16,8 @@ package filter
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/seq"
"sort"
)

Expand Down
4 changes: 2 additions & 2 deletions align/pals/packseqs.go
Expand Up @@ -18,8 +18,8 @@ package pals
import (
"bytes"
"fmt"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
)

var (
Expand Down
8 changes: 4 additions & 4 deletions align/pals/pair.go
Expand Up @@ -17,10 +17,10 @@ package pals

import (
"fmt"
"github.com/kortschak/BioGo/align/pals/dp"
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/feat"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/align/pals/dp"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/feat"
"github.com/kortschak/biogo/seq"
)

// A FeaturePair holds a pair of features with additional information relating the two.
Expand Down
14 changes: 7 additions & 7 deletions align/pals/pals.go
Expand Up @@ -17,13 +17,13 @@ package pals
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/align/pals/dp"
"github.com/kortschak/BioGo/align/pals/filter"
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/morass"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/align/pals/dp"
"github.com/kortschak/biogo/align/pals/filter"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/morass"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
"io"
"os"
"unsafe"
Expand Down
8 changes: 4 additions & 4 deletions align/pals/pals_test.go
Expand Up @@ -18,10 +18,10 @@ package pals
import (
"bytes"
"fmt"
"github.com/kortschak/BioGo/align/pals/dp"
"github.com/kortschak/BioGo/align/pals/filter"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/align/pals/dp"
"github.com/kortschak/biogo/align/pals/filter"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
check "launchpad.net/gocheck"
"math"
"testing"
Expand Down
4 changes: 2 additions & 2 deletions align/pals/write.go
Expand Up @@ -17,8 +17,8 @@ package pals

import (
"fmt"
"github.com/kortschak/BioGo/feat"
"github.com/kortschak/BioGo/io/featio/gff"
"github.com/kortschak/biogo/feat"
"github.com/kortschak/biogo/io/featio/gff"
"io"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion align/sw/example_test.go
Expand Up @@ -17,7 +17,7 @@ package sw

import (
"fmt"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/biogo/seq"
)

func ExampleAligner_Align() {
Expand Down
6 changes: 3 additions & 3 deletions align/sw/sw.go
Expand Up @@ -17,9 +17,9 @@ package sw
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/seq"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/seq"
"github.com/kortschak/biogo/util"
)

// Default character table lookups.
Expand Down
2 changes: 1 addition & 1 deletion align/sw/sw_test.go
Expand Up @@ -16,7 +16,7 @@ package sw
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/io/seqio/fasta"
"github.com/kortschak/biogo/io/seqio/fasta"
check "launchpad.net/gocheck"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion alphabet/alphabet.go
Expand Up @@ -18,7 +18,7 @@ package alphabet
import (
"errors"
"fmt"
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/biogo/bio"
"sort"
"strings"
"unicode"
Expand Down
4 changes: 2 additions & 2 deletions bio/defs.go
Expand Up @@ -17,6 +17,6 @@ package bio

// Output defaults.
var (
Precision = 4 // BioGo global precision value.
FloatFormat byte = 'f' // BioGo global float format.
Precision = 4 // biogo global precision value.
FloatFormat byte = 'f' // biogo global float format.
)
4 changes: 2 additions & 2 deletions bio/errors_test.go
Expand Up @@ -35,9 +35,9 @@ func (s *S) TestCaller(c *check.C) {
err := NewError("message", 0, "item")
c.Check(err.Error(), check.Equals, "message")
fn, ln := err.FileLine()
c.Check(fn, check.Matches, "/.*/BioGo/bio/errors_test.go")
c.Check(fn, check.Matches, "/.*/biogo/bio/errors_test.go")
c.Check(ln, check.Equals, 35)
c.Check(err.Package(), check.Equals, "github.com/kortschak/BioGo/bio.(*S)")
c.Check(err.Package(), check.Equals, "github.com/kortschak/biogo/bio.(*S)")
c.Check(err.Function(), check.Equals, "TestCaller")
err = f(5).(Error)
fmt.Println(err.Tracef(10))
Expand Down
4 changes: 2 additions & 2 deletions concurrent/map.go
Expand Up @@ -16,8 +16,8 @@ package concurrent
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/bio"
"github.com/kortschak/biogo/util"
"math"
)

Expand Down
2 changes: 1 addition & 1 deletion concurrent/processor.go
Expand Up @@ -16,7 +16,7 @@ package concurrent
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/biogo/bio"
"runtime"
"sync"
)
Expand Down
2 changes: 1 addition & 1 deletion concurrent/promise.go
Expand Up @@ -16,7 +16,7 @@ package concurrent
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import (
"github.com/kortschak/BioGo/bio"
"github.com/kortschak/biogo/bio"
"sync"
)

Expand Down
2 changes: 1 addition & 1 deletion doc.go
Expand Up @@ -201,4 +201,4 @@ PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http:www.gnu.org/licenses/>.
*/
package BioGo
package biogo
8 changes: 4 additions & 4 deletions examples/brahma/main.go
Expand Up @@ -5,10 +5,10 @@ import (
"encoding/gob"
"flag"
"fmt"
"github.com/kortschak/BioGo/feat"
"github.com/kortschak/BioGo/interval"
"github.com/kortschak/BioGo/io/featio/gff"
"github.com/kortschak/BioGo/util"
"github.com/kortschak/biogo/feat"
"github.com/kortschak/biogo/interval"
"github.com/kortschak/biogo/io/featio/gff"
"github.com/kortschak/biogo/util"
"os"
"runtime"
"sort"
Expand Down
8 changes: 4 additions & 4 deletions examples/cgr/main.go
Expand Up @@ -3,10 +3,10 @@ package main
import (
"flag"
"fmt"
"github.com/kortschak/BioGo/graphics/color"
"github.com/kortschak/BioGo/graphics/kmercolor"
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/io/seqio/fasta"
"github.com/kortschak/biogo/graphics/color"
"github.com/kortschak/biogo/graphics/kmercolor"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/io/seqio/fasta"
"image/png"
"os"
)
Expand Down
4 changes: 2 additions & 2 deletions examples/distance/main.go
Expand Up @@ -3,8 +3,8 @@ package main
import (
"flag"
"fmt"
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/io/seqio/fasta"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/io/seqio/fasta"
"os"
)

Expand Down
6 changes: 3 additions & 3 deletions examples/ganesh/main.go
Expand Up @@ -4,9 +4,9 @@ import (
"bufio"
"flag"
"fmt"
"github.com/kortschak/BioGo/matrix"
"github.com/kortschak/BioGo/matrix/sparse"
"github.com/kortschak/BioGo/nmf"
"github.com/kortschak/biogo/matrix"
"github.com/kortschak/biogo/matrix/sparse"
"github.com/kortschak/biogo/nmf"
"io"
"math/rand"
"os"
Expand Down
10 changes: 5 additions & 5 deletions examples/gayatri/main.go
Expand Up @@ -3,11 +3,11 @@ package main
import (
"flag"
"fmt"
"github.com/kortschak/BioGo/index/kmerindex"
"github.com/kortschak/BioGo/io/seqio/fasta"
"github.com/kortschak/BioGo/matrix"
"github.com/kortschak/BioGo/matrix/sparse"
"github.com/kortschak/BioGo/nmf"
"github.com/kortschak/biogo/index/kmerindex"
"github.com/kortschak/biogo/io/seqio/fasta"
"github.com/kortschak/biogo/matrix"
"github.com/kortschak/biogo/matrix/sparse"
"github.com/kortschak/biogo/nmf"
"math/rand"
"os"
"runtime"
Expand Down

0 comments on commit a4d7bff

Please sign in to comment.