Skip to content

Commit

Permalink
moving repo to @joiningdata
Browse files Browse the repository at this point in the history
  • Loading branch information
pbnjay committed Oct 30, 2019
1 parent ed2db8a commit e10d771
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk update && \
update-ms-fonts && \
adduser -D -g '' lollipops

WORKDIR /go/src/github.com/pbnjay/lollipops
WORKDIR /go/src/github.com/joiningdata/lollipops
COPY . .

RUN go get -d -v
Expand All @@ -17,7 +17,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /go/bin/lollipops
FROM scratch

LABEL description="Lollipops command-line tool to generate variant annotation diagrams"
LABEL url="https://github.com/pbnjay/lollipops"
LABEL url="https://github.com/joiningdata/lollipops"
LABEL maintainer="Jeremy Jay <jeremy@pbnjay.com>"

# Pull in a number of files from builder image
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ the area is exponentially proportional to the count indicated. Examples:

## Installation

Head over to the [Releases](https://github.com/pbnjay/lollipops/releases) to
Head over to the [Releases](https://github.com/joiningdata/lollipops/releases) to
download the latest version for your system in a simple command-line executable.

If you already have Go installed and want the bleeding edge, just
``go get -u github.com/pbnjay/lollipops`` to download the latest version.
``go get -u github.com/joiningdata/lollipops`` to download the latest version.

## Embedding

Expand All @@ -105,8 +105,8 @@ package main
import (
"os"

"github.com/pbnjay/lollipops/data"
"github.com/pbnjay/lollipops/drawing"
"github.com/joiningdata/lollipops/data"
"github.com/joiningdata/lollipops/drawing"
)

func main() {
Expand All @@ -125,7 +125,7 @@ func main() {

# CONTRIBUTING

Please submit your bugs and features requests via the [Issues](https://github.com/pbnjay/lollipops/issues) tab. Be sure to
Please submit your bugs and features requests via the [Issues](https://github.com/joiningdata/lollipops/issues) tab. Be sure to
search closed issues before submitting a new one in case the issue has been
previously discussed. Pull Requests are welcome, but please create an issue beforehand
to discuss significant changes.
Expand Down
2 changes: 1 addition & 1 deletion drawing/draw.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"strings"
"unicode"

"github.com/pbnjay/lollipops/data"
"github.com/joiningdata/lollipops/data"
)

type diagram struct {
Expand Down
2 changes: 1 addition & 1 deletion drawing/png.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"log"

"github.com/golang/freetype/truetype"
"github.com/pbnjay/lollipops/data"
"github.com/joiningdata/lollipops/data"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)
Expand Down
2 changes: 1 addition & 1 deletion drawing/svg.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"io"

"github.com/pbnjay/lollipops/data"
"github.com/joiningdata/lollipops/data"
)

const svgHeader = `<?xml version='1.0'?>
Expand Down
2 changes: 1 addition & 1 deletion drawing/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"regexp"
"strings"

"github.com/pbnjay/lollipops/data"
"github.com/joiningdata/lollipops/data"
)

var stripChangePos = regexp.MustCompile("(^|[A-Za-z]*)([0-9]+)([A-Za-z]*)")
Expand Down
4 changes: 2 additions & 2 deletions html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ template provided by Go's wasm toolchain in `$GOROOT/misc/wasm/`

Building lollipops for wasm using:

cd $GOPATH/github.com/pbnjay/lollipops
cd $GOPATH/github.com/joiningdata/lollipops
GOOS=js GOARCH=wasm go build -o html/lollipops.wasm .

You can then copy the 4 files to any webserver:
Expand All @@ -18,5 +18,5 @@ You can then copy the 4 files to any webserver:

A simple server is included here for testing purposes:

cd $GOPATH/github.com/pbnjay/lollipops/html
cd $GOPATH/github.com/joiningdata/lollipops/html
go run www.go
2 changes: 1 addition & 1 deletion html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
</p>
<br>
<p>This tool is also available as a command-line program that may be incorporated
into your own pipelines. Open source at <a href="https://github.com/pbnjay/lollipops">https://github.com/pbnjay/lollipops</a>.</p>
into your own pipelines. Open source at <a href="https://github.com/joiningdata/lollipops">https://github.com/joiningdata/lollipops</a>.</p>
</div>
</body>
</html>
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (
"strings"

"github.com/inconshreveable/mousetrap"
"github.com/pbnjay/lollipops/data"
"github.com/pbnjay/lollipops/drawing"
"github.com/joiningdata/lollipops/data"
"github.com/joiningdata/lollipops/drawing"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions output.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"strings"

"github.com/pbnjay/lollipops/data"
"github.com/pbnjay/lollipops/drawing"
"github.com/joiningdata/lollipops/data"
"github.com/joiningdata/lollipops/drawing"
)

func createOutput(filename string, d *data.GraphicResponse, variants []string) error {
Expand Down
4 changes: 2 additions & 2 deletions output_wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"os"
"syscall/js"

"github.com/pbnjay/lollipops/data"
"github.com/pbnjay/lollipops/drawing"
"github.com/joiningdata/lollipops/data"
"github.com/joiningdata/lollipops/drawing"
)

func createOutput(elementID string, d *data.GraphicResponse, variants []string) error {
Expand Down
2 changes: 1 addition & 1 deletion workflow/lollipops.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ s:author:
s:name: Jeremy Jay

s:citation: http://dx.doi.org/10.1371/journal.pone.0160519
s:codeRepository: https://github.com/pbnjay/lollipops
s:codeRepository: https://github.com/joiningdata/lollipops
s:dateCreated: "2014-09-12"
s:license: https://spdx.org/licenses/GPL-3.0-only

Expand Down

0 comments on commit e10d771

Please sign in to comment.