Skip to content

Commit

Permalink
Update URL of HGVS Nomenclature
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Oct 16, 2024
1 parent 9664eb5 commit f998371
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![build](https://github.com/chrovis/clj-hgvs/actions/workflows/build.yml/badge.svg)](https://github.com/chrovis/clj-hgvs/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/chrovis/clj-hgvs/branch/master/graph/badge.svg)](https://codecov.io/gh/chrovis/clj-hgvs)

Clojure(Script) library for handling [HGVS](http://varnomen.hgvs.org/).
Clojure(Script) library for handling [HGVS](https://hgvs-nomenclature.org/).

## Features

Expand Down
2 changes: 1 addition & 1 deletion src/clj_hgvs/core.cljc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns clj-hgvs.core
"Main functions for handling HGVS. See http://varnomen.hgvs.org/ for the
"Main functions for handling HGVS. See https://hgvs-nomenclature.org/ for the
detail HGVS nomenclature."
(:refer-clojure :exclude [== #?(:clj format)])
(:require #?(:clj [clojure.pprint :as pp])
Expand Down
4 changes: 2 additions & 2 deletions src/clj_hgvs/mutation.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@

;;; DNA mutations

;; See http://varnomen.hgvs.org/bg-material/standards#dna
;; See https://hgvs-nomenclature.org/stable/background/standards/#dna
(s/def ::dna-bases
(s/and string? #(re-matches #"[ACGTBDHKMNRSVWY]+" %)))

Expand Down Expand Up @@ -879,7 +879,7 @@

;;; RNA mutations

;; See http://varnomen.hgvs.org/bg-material/standards#rna
;; See https://hgvs-nomenclature.org/stable/background/standards/#rna
(s/def ::rna-bases
(s/and string? #(re-matches #"[acgubdhkmnrsvwy]+" %)))

Expand Down

0 comments on commit f998371

Please sign in to comment.