Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Depends: python3-cgecore
· 231072cb
Andreas Tille
authored
May 24, 2019
231072cb
Fix build
· 0273a5da
Andreas Tille
authored
May 24, 2019
0273a5da
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
0273a5da
...
...
@@ -6,7 +6,8 @@ Priority: optional
Build-Depends: debhelper (>= 12~),
dh-python,
python3,
python3-tabulate
python3-tabulate,
python3-cgecore
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/virulencefinder
Vcs-Git: https://salsa.debian.org/med-team/virulencefinder.git
...
...
@@ -15,9 +16,10 @@ Homepage: https://bitbucket.org/genomicepidemiology/virulencefinder
Package: virulencefinder
Architecture: any
Depends: ${misc:Depends},
${python:Depends},
${python
3
:Depends},
python3,
python3-tabulate
python3-tabulate,
python3-cgecore
Description: identify viruelnce genes in total or partial sequenced isolates of bacteria
The VirulenceFinder service contains one Python script
virulencefinder.py which is the script of the latest version of the
...
...
debian/lintian-overrides
deleted
100644 → 0
View file @
252afda1
# see https://lists.debian.org/debian-med/2018/06/msg00043.html
virulencefinder: script-with-language-extension usr/bin/*.*
debian/rules
View file @
0273a5da
...
...
@@ -10,7 +10,7 @@ export PYBUILD_CLEAN_ARGS=rm -rf test/results_tab.tsv
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
./virulencefinder.py -i test/test.fsa -o test/ -mp blastn -x -q ; \
./virulencefinder.py -i test/test.fsa -o test/
-p test/database/
-mp blastn -x -q ; \
file=test/results_tab.tsv ; \
DIFF=$$(diff $file test/test_results.tsv) ; \
if [ "$DIFF" == "" ] && [ -s $file ] ; then \
...
...