-
Notifications
You must be signed in to change notification settings - Fork 1
/
org-davep-2bit.asd
35 lines (29 loc) · 1.17 KB
/
org-davep-2bit.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;; org-davep-2bit --- 2bit file reader for Common Lisp.
;;
;; org-davep-2bit.asd --- asdf package definition file.
;; Copyright 2020 by Dave Pearson <[email protected]>
;;
;; This software is Copyright (C) Dave Pearson <[email protected]> 2020
;;
;; Dave Pearson grants you the rights to distribute and use this software as
;; governed by the terms of the Lisp Lesser GNU Public License
;; <URL:http://opensource.franz.com/preamble.html>, known as the LLGPL.
;;; Code:
(defpackage #:org-davep-2bit-system
(:use #:common-lisp #:asdf))
(in-package :org-davep-2bit-system)
(defsystem org-davep-2bit
:name "org-davep-2bit"
:author "Dave Pearson <[email protected]>"
:maintainer "Dave Pearson <[email protected]>"
:licence "LLGPL"
:version "0.1"
:description "2bit reader for Common Lisp."
:long-description
"org-davep-2bit provides a set of classes, functions and macros for Common
Lisp for reading data from 2bit-format files. Details on the format of 2bit
files can be found here:
<URL:http://genome.ucsc.edu/FAQ/FAQformat.html#format7>"
:components ((:file "packages")
(:file "2bit" :depends-on ("packages"))))
;;; org-davep-2bit.asd ends here