From e10d771dc9747bbdbfe51b1b7397f85ea3c2cae7 Mon Sep 17 00:00:00 2001 From: Jeremy Jay Date: Wed, 30 Oct 2019 08:57:45 -0400 Subject: [PATCH] moving repo to @joiningdata --- Dockerfile | 4 ++-- README.md | 10 +++++----- drawing/draw.go | 2 +- drawing/png.go | 2 +- drawing/svg.go | 2 +- drawing/utils.go | 2 +- html/README.md | 4 ++-- html/index.html | 2 +- main.go | 4 ++-- output.go | 4 ++-- output_wasm.go | 4 ++-- workflow/lollipops.cwl | 2 +- 12 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04f0c36..92e3db7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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 " # Pull in a number of files from builder image diff --git a/README.md b/README.md index 292a531..cba7810 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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() { @@ -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. diff --git a/drawing/draw.go b/drawing/draw.go index d26519c..9007cbb 100644 --- a/drawing/draw.go +++ b/drawing/draw.go @@ -23,7 +23,7 @@ import ( "strings" "unicode" - "github.com/pbnjay/lollipops/data" + "github.com/joiningdata/lollipops/data" ) type diagram struct { diff --git a/drawing/png.go b/drawing/png.go index 4fcf2d0..7c3819f 100644 --- a/drawing/png.go +++ b/drawing/png.go @@ -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" ) diff --git a/drawing/svg.go b/drawing/svg.go index 05b2a66..fa69984 100644 --- a/drawing/svg.go +++ b/drawing/svg.go @@ -21,7 +21,7 @@ import ( "fmt" "io" - "github.com/pbnjay/lollipops/data" + "github.com/joiningdata/lollipops/data" ) const svgHeader = ` diff --git a/drawing/utils.go b/drawing/utils.go index 85e4b23..40cd062 100644 --- a/drawing/utils.go +++ b/drawing/utils.go @@ -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]*)") diff --git a/html/README.md b/html/README.md index 9f08247..2328feb 100644 --- a/html/README.md +++ b/html/README.md @@ -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: @@ -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 diff --git a/html/index.html b/html/index.html index b5b9523..3f00d78 100644 --- a/html/index.html +++ b/html/index.html @@ -147,7 +147,7 @@


This tool is also available as a command-line program that may be incorporated - into your own pipelines. Open source at https://github.com/pbnjay/lollipops.

+ into your own pipelines. Open source at https://github.com/joiningdata/lollipops.

diff --git a/main.go b/main.go index 25149fe..b7ff001 100644 --- a/main.go +++ b/main.go @@ -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 ( diff --git a/output.go b/output.go index 3a6f3f8..b1a519d 100644 --- a/output.go +++ b/output.go @@ -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 { diff --git a/output_wasm.go b/output_wasm.go index 5353509..79f3019 100644 --- a/output_wasm.go +++ b/output_wasm.go @@ -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 { diff --git a/workflow/lollipops.cwl b/workflow/lollipops.cwl index 1913354..62eb794 100644 --- a/workflow/lollipops.cwl +++ b/workflow/lollipops.cwl @@ -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