-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring docs to be more easily navigable. (#219)
* updated doc.go. * refactored docs to render doc strings. * moved poly.go sequence structs to io subpackage. * moved codon tests to dedicated directory.
- Loading branch information
1 parent
27152b0
commit 1f70caa
Showing
34 changed files
with
403 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
/*Package poly is a go package for engineering organisms. | ||
/* | ||
Package poly is a Go package for engineering organisms. | ||
Synthetic biology has a software problem. I.E almost all | ||
of our field's software is slow, hard to maintain, | ||
and even harder to deploy. | ||
Poly solves that problem by providing a highly tested | ||
suite of common functions for engineering organisms | ||
through a simple interface in Go. | ||
Poly can be used in two ways. | ||
The reason why Go was choosen is that it's a highly popular | ||
language with a simple sytax and a large ecosystem of packages | ||
that makes it *extremely* easy to learn, use, and deploy. | ||
It's also on average 25X faster and more energy efficient that | ||
Python. | ||
1. As a Go library where you have finer control and can make magical things happen. | ||
2. As a command line utility where you can bash script your way to greatness and make DNA go brrrrrrrr. | ||
Eventually we intend for poly to provide all the functionality | ||
needed such that users can use it to engineer proteins which | ||
they can then optimize and insert into their organisms of choice. | ||
We've made great progress and are always looking for more support! | ||
Installation | ||
tl;dr | ||
Poly is awesome. | ||
These instructions assume that you already have a working go environment. If not see: | ||
https://golang.org/doc/install | ||
Throw money at Tim's github sponsors page: | ||
https://github.com/sponsors/TimothyStiles | ||
Building Poly CLI and package from scratch: | ||
git clone https://github.com/TimothyStiles/poly.git && cd poly && go build ./... && go install ./... | ||
Installing latest release of poly as a go package: | ||
go get github.com/TimothyStiles/poly | ||
For CLI only instructions please checkout: https://pkg.go.dev/github.com/TimothyStiles/poly/poly | ||
Browse our subpackages to find the functionality and documentation you need: | ||
https://pkg.go.dev/github.com/TimothyStiles/poly#section-directories | ||
*/ | ||
package poly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.