Skip to content

Commit 05cdd6d

Browse files
committed
migrated namespace from TimothyStiles/poly to bebop/poly
1 parent 8ea0d04 commit 05cdd6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+87
-87
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ As one final guideline please be welcoming to newcomers and encourage new contri
6060

6161
Unsure where to begin contributing to Poly? You can start by looking through these beginner and help-wanted issues:
6262

63-
[Good first issues](https://github.com/TimothyStiles/poly/contribute) - issues which are good for first time contributors.
63+
[Good first issues](https://github.com/bebop/poly/contribute) - issues which are good for first time contributors.
6464

65-
[Help wanted issues](https://github.com/TimothyStiles/poly/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+) - issues which should be a bit more involved than beginner issues.
65+
[Help wanted issues](https://github.com/bebop/poly/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+) - issues which should be a bit more involved than beginner issues.
6666

67-
[Feature requests](https://github.com/TimothyStiles/poly/labels/enhancement) - before requesting a new feature search through previous feature requests to see if it's already been requested. If not then feel free to submit a request and tag it with the enhancement tag!
67+
[Feature requests](https://github.com/bebop/poly/labels/enhancement) - before requesting a new feature search through previous feature requests to see if it's already been requested. If not then feel free to submit a request and tag it with the enhancement tag!
6868

6969
### Working on your first Pull Request?
7070

@@ -106,11 +106,11 @@ If the answer to either of those two questions are "yes", then you're probably d
106106

107107
### Non-security related bugs
108108

109-
For non-security bug reports please [submit it using this template!](https://github.com/TimothyStiles/poly/issues/new?assignees=&labels=&template=bug_report.md&title=)
109+
For non-security bug reports please [submit it using this template!](https://github.com/bebop/poly/issues/new?assignees=&labels=&template=bug_report.md&title=)
110110

111111
# How to suggest a feature or enhancement
112112

113-
If you want to suggest a feature it's as easy as filling out this [issue template](https://github.com/TimothyStiles/poly/issues/new?assignees=&labels=&template=feature_request.md&title=), but before you do please [check to see if it's already been suggested!](https://github.com/TimothyStiles/poly/labels/enhancement)
113+
If you want to suggest a feature it's as easy as filling out this [issue template](https://github.com/bebop/poly/issues/new?assignees=&labels=&template=feature_request.md&title=), but before you do please [check to see if it's already been suggested!](https://github.com/bebop/poly/labels/enhancement)
114114

115115
# How add a recommended VSCode Plugin
116116

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# (Poly)merase <img align="right" src="https://cdn.discordapp.com/attachments/766785755305213953/777596834734145546/ProfileFrameArtboard_1.png" width="100">
22

3-
[![PkgGoDev](https://pkg.go.dev/badge/github.com/TimothyStiles/poly)](https://pkg.go.dev/github.com/TimothyStiles/poly)
4-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/TimothyStiles/poly/blob/main/LICENSE)
5-
![Tests](https://github.com/TimothyStiles/poly/workflows/Test/badge.svg)
3+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/bebop/poly)](https://pkg.go.dev/github.com/bebop/poly)
4+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/bebop/poly/blob/main/LICENSE)
5+
![Tests](https://github.com/bebop/poly/workflows/Test/badge.svg)
66
![Test Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/TimothyStiles/e58f265655ac0acacdd1a38376ccd32a/raw/coverage.json)
77

88
Poly is a Go package for engineering organisms.
@@ -18,14 +18,14 @@ Poly is a Go package for engineering organisms.
1818

1919
## Install
2020

21-
`go get github.com/TimothyStiles/poly@latest`
21+
`go get github.com/bebop/poly@latest`
2222

2323
## Documentation
2424

2525

26-
* **[Library](https://pkg.go.dev/github.com/TimothyStiles/poly#pkg-examples)**
26+
* **[Library](https://pkg.go.dev/github.com/bebop/poly#pkg-examples)**
2727

28-
* **[Tutorials](https://github.com/TimothyStiles/poly/tree/main/tutorials)**
28+
* **[Tutorials](https://github.com/bebop/poly/tree/main/tutorials)**
2929

3030
* **[Learning Synbio](https://github.com/TimothyStiles/how-to-synbio)**
3131

align/align.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Tim
6666
package align
6767

6868
import (
69-
"github.com/TimothyStiles/poly/align/matrix"
69+
"github.com/bebop/poly/align/matrix"
7070
)
7171

7272
// Scoring is a struct that holds the scoring matrix for match, mismatch, and gap penalties.

align/align_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package align_test
33
import (
44
"testing"
55

6-
"github.com/TimothyStiles/poly/align"
7-
"github.com/TimothyStiles/poly/align/matrix"
8-
"github.com/TimothyStiles/poly/alphabet"
6+
"github.com/bebop/poly/align"
7+
"github.com/bebop/poly/align/matrix"
8+
"github.com/bebop/poly/alphabet"
99
)
1010

1111
func TestNeedlemanWunsch(t *testing.T) {

align/example_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ package align_test
44
import (
55
"fmt"
66

7-
"github.com/TimothyStiles/poly/align"
8-
"github.com/TimothyStiles/poly/align/matrix"
9-
"github.com/TimothyStiles/poly/alphabet"
7+
"github.com/bebop/poly/align"
8+
"github.com/bebop/poly/align/matrix"
9+
"github.com/bebop/poly/alphabet"
1010
)
1111

1212
func ExampleNeedlemanWunsch() {

align/matrix/matrix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package matrix
66
import (
77
"fmt"
88

9-
"github.com/TimothyStiles/poly/alphabet"
9+
"github.com/bebop/poly/alphabet"
1010
)
1111

1212
// SubstitutionMatrix is a struct that holds a substitution matrix and the two alphabets that the matrix is defined over.

align/matrix/matrix_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package matrix_test
33
import (
44
"testing"
55

6-
"github.com/TimothyStiles/poly/align/matrix"
7-
"github.com/TimothyStiles/poly/alphabet"
6+
"github.com/bebop/poly/align/matrix"
7+
"github.com/bebop/poly/alphabet"
88
"github.com/stretchr/testify/assert"
99
)
1010

alphabet/alphabet_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
"github.com/TimothyStiles/poly/alphabet"
7+
"github.com/bebop/poly/alphabet"
88
)
99

1010
func TestAlphabet(t *testing.T) {

checks/checks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package checks
66
import (
77
"strings"
88

9-
"github.com/TimothyStiles/poly/transform"
9+
"github.com/bebop/poly/transform"
1010
)
1111

1212
// IsPalindromic accepts a sequence of even length and returns if it is

checks/checks_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package checks_test
33
import (
44
"testing"
55

6-
"github.com/TimothyStiles/poly/checks"
6+
"github.com/bebop/poly/checks"
77
)
88

99
// This also needs an example test.

clone/clone.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ import (
4747
"sort"
4848
"strings"
4949

50-
"github.com/TimothyStiles/poly/checks"
51-
"github.com/TimothyStiles/poly/seqhash"
52-
"github.com/TimothyStiles/poly/transform"
50+
"github.com/bebop/poly/checks"
51+
"github.com/bebop/poly/seqhash"
52+
"github.com/bebop/poly/transform"
5353
)
5454

5555
// Part is a simple struct that can carry a circular or linear DNA sequence.

clone/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/TimothyStiles/poly/clone"
8-
"github.com/TimothyStiles/poly/seqhash"
7+
"github.com/bebop/poly/clone"
8+
"github.com/bebop/poly/seqhash"
99
)
1010

1111
func ExampleGoldenGate() {

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ Throw money at Tim's github sponsors page:
2929
https://github.com/sponsors/TimothyStiles
3030
3131
Browse our subpackages to find the functionality and documentation you need:
32-
https://pkg.go.dev/github.com/TimothyStiles/poly#section-directories
32+
https://pkg.go.dev/github.com/bebop/poly#section-directories
3333
*/
3434
package poly

fold/dna.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package fold
22

3-
import "github.com/TimothyStiles/poly/transform"
3+
import "github.com/bebop/poly/transform"
44

55
var dnaComplement = transform.ComplementBase
66

fold/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package fold_test
33
import (
44
"fmt"
55

6-
"github.com/TimothyStiles/poly/fold"
6+
"github.com/bebop/poly/fold"
77
)
88

99
func ExampleZuker() {

fold/fold.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
"math"
3434
"strings"
3535

36-
"github.com/TimothyStiles/poly/transform"
36+
"github.com/bebop/poly/transform"
3737
)
3838

3939
// Zuker folds the DNA sequence and return the lowest free energy score.

fold/rna.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package fold
22

3-
import "github.com/TimothyStiles/poly/transform"
3+
import "github.com/bebop/poly/transform"
44

55
var rnaComplement = transform.ComplementBaseRNA
66

fold/seqfold.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math"
66
"strings"
77

8-
"github.com/TimothyStiles/poly/checks"
8+
"github.com/bebop/poly/checks"
99
)
1010

1111
const (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/TimothyStiles/poly
1+
module github.com/bebop/poly
22

33
go 1.18
44

io/example_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package io_test
22

33
import (
4-
"github.com/TimothyStiles/poly/io/fasta"
5-
"github.com/TimothyStiles/poly/io/genbank"
6-
"github.com/TimothyStiles/poly/io/gff"
7-
"github.com/TimothyStiles/poly/io/polyjson"
4+
"github.com/bebop/poly/io/fasta"
5+
"github.com/bebop/poly/io/genbank"
6+
"github.com/bebop/poly/io/gff"
7+
"github.com/bebop/poly/io/polyjson"
88
)
99

1010
// This is where the integration tests that make effed up cyclic dependencies go.

io/fasta/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/TimothyStiles/poly/io/fasta"
10+
"github.com/bebop/poly/io/fasta"
1111
)
1212

1313
//go:embed data/base.fasta

io/fastq/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/TimothyStiles/poly/io/fastq"
9+
"github.com/bebop/poly/io/fastq"
1010
)
1111

1212
//go:embed data/nanosavseq.fastq

io/genbank/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"path/filepath"
88

9-
"github.com/TimothyStiles/poly/io/genbank"
9+
"github.com/bebop/poly/io/genbank"
1010
)
1111

1212
// This example shows how to open a genbank file and search for a gene given

io/genbank/genbank.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"strconv"
2121
"strings"
2222

23-
"github.com/TimothyStiles/poly/transform"
23+
"github.com/bebop/poly/transform"
2424
"github.com/lunny/log"
2525
"github.com/mitchellh/go-wordwrap"
2626
)

io/genbank/genbank_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"reflect"
1414

15-
"github.com/TimothyStiles/poly/transform"
15+
"github.com/bebop/poly/transform"
1616
"github.com/google/go-cmp/cmp"
1717
"github.com/google/go-cmp/cmp/cmpopts"
1818
"github.com/stretchr/testify/assert"

io/gff/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"path/filepath"
88
"testing"
99

10-
"github.com/TimothyStiles/poly/io/gff"
11-
"github.com/TimothyStiles/poly/transform"
10+
"github.com/bebop/poly/io/gff"
11+
"github.com/bebop/poly/transform"
1212
)
1313

1414
// This example shows how to open a gff file and search for a gene given its

io/gff/gff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
"lukechampine.com/blake3"
2424

25-
"github.com/TimothyStiles/poly/transform"
25+
"github.com/bebop/poly/transform"
2626
)
2727

2828
var (

io/polyjson/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"path/filepath"
77
"time"
88

9-
"github.com/TimothyStiles/poly/io/polyjson"
10-
"github.com/TimothyStiles/poly/seqhash"
9+
"github.com/bebop/poly/io/polyjson"
10+
"github.com/bebop/poly/seqhash"
1111
)
1212

1313
func Example() {

io/polyjson/polyjson.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"os"
1414
"time"
1515

16-
"github.com/TimothyStiles/poly/transform"
16+
"github.com/bebop/poly/transform"
1717
)
1818

1919
/******************************************************************************

io/polyjson/polyjson_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/TimothyStiles/poly/transform"
9+
"github.com/bebop/poly/transform"
1010
"github.com/stretchr/testify/assert"
1111
)
1212

io/rebase/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package rebase_test
33
import (
44
"fmt"
55

6-
"github.com/TimothyStiles/poly/io/rebase"
6+
"github.com/bebop/poly/io/rebase"
77
)
88

99
// This example reads rebase into an enzymeMap and returns the AarI recognition

io/slow5/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/TimothyStiles/poly/io/slow5"
7+
"github.com/bebop/poly/io/slow5"
88
)
99

1010
func ExampleNewParser() {

io/slow5/slow5.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ func (parser *Parser) ParseNext() (Read, error) {
300300
// For whatever reason, this is a string.
301301
newRead.ChannelNumber = values[valueIndex]
302302
default:
303-
newRead.Error = fmt.Errorf("Unknown field to parser '%s' found on line %d. Please report to github.com/TimothyStiles/poly", fieldValue, parser.line)
303+
newRead.Error = fmt.Errorf("Unknown field to parser '%s' found on line %d. Please report to github.com/bebop/poly", fieldValue, parser.line)
304304
}
305305
}
306306
return newRead, nil

io/uniprot/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package uniprot_test
33
import (
44
"fmt"
55

6-
"github.com/TimothyStiles/poly/io/uniprot"
6+
"github.com/bebop/poly/io/uniprot"
77
)
88

99
// This example shows how to open a uniprot data dump file and read the results

mash/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package mash_test
33
import (
44
"fmt"
55

6-
"github.com/TimothyStiles/poly/mash"
6+
"github.com/bebop/poly/mash"
77
)
88

99
func ExampleMash() {

mash/mash_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package mash_test
33
import (
44
"testing"
55

6-
"github.com/TimothyStiles/poly/mash"
6+
"github.com/bebop/poly/mash"
77
)
88

99
func TestMash(t *testing.T) {

primers/pcr/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pcr_test
33
import (
44
"fmt"
55

6-
"github.com/TimothyStiles/poly/primers/pcr"
6+
"github.com/bebop/poly/primers/pcr"
77
)
88

99
// This example shows how to design a sequence.

0 commit comments

Comments
 (0)