-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial debianisation of axe. Likely to change, but here it is
- Loading branch information
Showing
14 changed files
with
116 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,8 @@ build | |
*.so | ||
tags | ||
version | ||
|
||
# debian | ||
version | ||
axe-deb | ||
axe-demuxer_* |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
rm -f axe-demuxer* | ||
rm -f version | ||
rm -rf axe-deb |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
set -x | ||
|
||
test -d .git | ||
|
||
PKG_DIR=axe-deb | ||
SRC_DIRS="src/ docs/ tests/ CMakeLists.txt debian/ version" | ||
|
||
# grab version from changelog | ||
VERSION="$(head -n 1 debian/changelog |perl -pe 's/.*\((.+)-.*/$1/')" | ||
|
||
echo $VERSION >version | ||
rm -rf $PKG_DIR/* axe_*.orig.tar.gz | ||
mkdir -p $PKG_DIR | ||
cp -r $SRC_DIRS $PKG_DIR | ||
|
||
|
||
tar czf axe-demuxer_${VERSION}.orig.tar.gz $SRC_DIRS |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/bin | ||
usr/share/man/man1 |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
axe-demuxer (0.2.1-1) UNRELEASED; urgency=medium | ||
|
||
* Initial debian release. (Closes: #XXXXX) | ||
|
||
-- Kevin Murray <[email protected]> Mon, 26 Jan 2015 11:00:07 +1100 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Source: axe-demuxer | ||
Maintainer: Kevin Murray <[email protected]> | ||
Section: science | ||
Priority: optional | ||
Standards-Version: 3.9.6 | ||
Build-Depends: debhelper (>= 9), | ||
cmake, | ||
zlib1g-dev | ||
Homepage: https://github.com/kdmurray91/axe | ||
|
||
Package: axe-demuxer | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Trie-based DNA sequencing read demultiplexer | ||
AXE very rapidly selects the optimal barcode present in a sequence read, even | ||
in the presence of sequencing errors. The algorithm is able to handle | ||
combinatorial barcoding, barcodes of differing length, and several mismatches | ||
per barcode. |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Format: http://dep.debian.net/deps/dep5 | ||
Upstream-Name: axe | ||
Source: https://github.com/kdmurray91/axe | ||
|
||
Files: * | ||
Copyright: 2014 Kevin Murray | ||
License: GPL-3+ | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
. | ||
This package is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
. | ||
On Debian systems, the complete text of the GNU General | ||
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/make -f | ||
DPKG_EXPORT_BUILDFLAGS = 1 | ||
include /usr/share/dpkg/buildflags.mk | ||
|
||
%: | ||
dh $@ --buildsystem=cmake | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
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,24 +1,24 @@ | ||
FIND_PROGRAM(SPHINXBUILD sphinx-build) | ||
IF(SPHINXBUILD) | ||
SET(ALLSPHINXOPTS -q -D latex_paper_size=a4) | ||
ADD_CUSTOM_TARGET(doc_html | ||
COMMAND ${SPHINXBUILD} -b html ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/html | ||
SET(ALLSPHINXOPTS -q -D latex_paper_size=a4) | ||
ADD_CUSTOM_TARGET(doc_html | ||
COMMAND ${SPHINXBUILD} -b html ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/html | ||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | ||
) | ||
ADD_CUSTOM_TARGET(doc_onehtml | ||
COMMAND ${SPHINXBUILD} -b singlehtml ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/single | ||
) | ||
ADD_CUSTOM_TARGET(doc_onehtml | ||
COMMAND ${SPHINXBUILD} -b singlehtml ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/single | ||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | ||
) | ||
ADD_CUSTOM_TARGET(doc_man | ||
COMMAND ${SPHINXBUILD} -b man ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/man | ||
) | ||
ADD_CUSTOM_TARGET(doc_man | ||
COMMAND ${SPHINXBUILD} -b man ${ALLSPHINXOPTS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_BINARY_DIR}/doc/man | ||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | ||
) | ||
) | ||
ADD_CUSTOM_TARGET(doc_clean | ||
COMMAND ${CMAKE_COMMAND} -E remove_directory "${CMAKE_BINARY_DIR}/doc" | ||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | ||
) | ||
ADD_CUSTOM_TARGET(doc ALL DEPENDS doc_man doc_onehtml) | ||
INSTALL(DIRECTORY "${CMAKE_BINARY_DIR}/doc/man/" DESTINATION "man" PATTERN ".*" EXCLUDE) | ||
INSTALL(FILES ${CMAKE_BINARY_DIR}/doc/man/axe.1 DESTINATION "share/man/man1") | ||
SET_DIRECTORY_PROPERTIES(PROPERTY ADDITIONAL_MAKE_CLEAN_FILES doc/) | ||
ENDIF() | ||
|
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
Submodule libqes
updated
from 1acb09 to a2b8d3