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.

0 commit comments

Comments
 (0)