Commit e526dae8 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 0.3.1

parent e5305172
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+6 −0
Original line number Diff line number Diff line
*.pyc
.*.swp
build/
dist/
pbalign.egg-info/
.DS_Store

MANIFEST.in

0 → 100644
+1 −0
Original line number Diff line number Diff line
include LICENSES.txt
+5 −2
Original line number Diff line number Diff line
@@ -15,10 +15,13 @@ install:
develop:
	python setup.py develop

test:
pylint:
	pylint --errors-only pbalign

test: pylint
	# Unit tests
	#find tests/unit -name "*.py" | xargs nosetests
	nosetests --verbose tests/unit/*.py
	python setup.py test
	# End-to-end tests
	@echo pbalign cram tests require blasr installed.
	find tests/cram -name "*.t" | xargs cram 
+4 −0
Original line number Diff line number Diff line
@@ -3,3 +3,7 @@ pbalign maps PacBio reads to reference sequences.
Want to know how to install and run pbalign?

Please refer to https://github.com/PacificBiosciences/pbalign/blob/master/doc/howto.rst

DISCLAIMER
----------
THIS WEBSITE AND CONTENT AND ALL SITE-RELATED SERVICES, INCLUDING ANY DATA, ARE PROVIDED "AS IS," WITH ALL FAULTS, WITH NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, NON-INFRINGEMENT OR FITNESS FOR A PARTICULAR PURPOSE. YOU ASSUME TOTAL RESPONSIBILITY AND RISK FOR YOUR USE OF THIS SITE, ALL SITE-RELATED SERVICES, AND ANY THIRD PARTY WEBSITES OR APPLICATIONS. NO ORAL OR WRITTEN INFORMATION OR ADVICE SHALL CREATE A WARRANTY OF ANY KIND. ANY REFERENCES TO SPECIFIC PRODUCTS OR SERVICES ON THE WEBSITES DO NOT CONSTITUTE OR IMPLY A RECOMMENDATION OR ENDORSEMENT BY PACIFIC BIOSCIENCES.

bamboo_build.sh

0 → 100755
+40 −0
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -vex

################
# DEPENDENCIES #
################

## Load modules
type module >& /dev/null || . /mnt/software/Modules/current/init/bash

module purge

module load gcc
module load git
module load samtools

module load python/2

case "${bamboo_planRepository_branchName}" in
  master)
    module load blasr/master
    ;;
  *)
    module load blasr/develop
    ;;
esac


rm -rf prebuilts build
test -d .pip/wheels && find .pip/wheels -type f ! -name '*none-any.whl' -print -delete || true

export NX3PBASEURL=http://nexus/repository/unsupported/pitchfork/gcc-6.4.0
export PATH="${PWD}/build/bin:${PATH}"
export PYTHONUSERBASE="${PWD}/build"
export PIP="pip --cache-dir=$bamboo_build_working_directory/.pip"

CUR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

source "${CUR_DIR}"/scripts/ci/build.sh
source "${CUR_DIR}"/scripts/ci/test.sh
Loading