aboutsummaryrefslogtreecommitdiff
path: root/biology
Commit message (Collapse)AuthorAgeFilesLines
...
* PyQt5: Update PyQt5 to 5.15.4 and py-qtbuilder to 1.9.1Loïc Bartoletti2021-03-161-1/+1
| | | | | | | | PR: 254218 Exp-run by: antoine Notes: svn path=/head/; revision=568547
* biology/generand: Generate random genomic data in FAST[AQ], SAM, or VCF formatJason W. Bacon2021-03-154-0/+27
| | | | | | | | | Generate random genomic data in FASTA/FASTQ, SAM, or VCF format, suitable for small academic examples or test inputs of arbitrary size. Output can be piped directly to programs or redirected to a file and edited to taste. Notes: svn path=/head/; revision=568501
* biology/abyss: Add PORTSCOUT lineYuri Victorovich2021-03-141-0/+2
| | | | Notes: svn path=/head/; revision=568329
* Move: biology/py-fastTSNE -> math/py-openTSNEYuri Victorovich2021-03-135-49/+0
| | | | | | | Project was renamed and reimplemented. Notes: svn path=/head/; revision=568296
* biology/gatk: Fix fetchYuri Victorovich2021-03-131-5/+5
| | | | | | | Reported by: fallout Notes: svn path=/head/; revision=568271
* biology/gatk: Update 4.1.9.0 -> 4.2.0.0Yuri Victorovich2021-03-122-7/+6
| | | | Notes: svn path=/head/; revision=568141
* biology/diamond: Update to 2.0.8Joseph Mingrone2021-03-112-4/+4
| | | | | | | https://github.com/bbuchfink/diamond/releases/tag/v2.0.8 Notes: svn path=/head/; revision=568088
* biology/hmmer: disable on powerpc64le and powerpcspePiotr Kubaj2021-03-101-1/+1
| | | | | | | | Altivec/VSX code in this port works only on big-endian POWER. powerpcspe has neither SSE2 nor Altivec. Notes: svn path=/head/; revision=568013
* biology/py-scikit-bio: fix build on powerpc64Piotr Kubaj2021-03-091-1/+1
| | | | | | | | | | | | | GCC is also necessary on powerpc64: In file included from skbio/alignment/_ssw_wrapper.c:626: In file included from skbio/alignment/_lib/ssw.h:17: In file included from /usr/lib/clang/11.0.1/include/emmintrin.h:13: In file included from /usr/lib/clang/11.0.1/include/xmmintrin.h:13: /usr/lib/clang/11.0.1/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); Notes: svn path=/head/; revision=567918
* biology/py-scikit-bio: fix build on powerpc64lePiotr Kubaj2021-03-091-2/+5
| | | | | | | | | | | | | Use GCC: In file included from skbio/alignment/_ssw_wrapper.c:626: In file included from skbio/alignment/_lib/ssw.h:17: In file included from /usr/lib/clang/11.0.1/include/emmintrin.h:13: In file included from /usr/lib/clang/11.0.1/include/xmmintrin.h:13: /usr/lib/clang/11.0.1/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); Notes: svn path=/head/; revision=567882
* PyQt5: Update PyQt5 to 5.15.3, QScintilla2 to 2.12.0, py-qtbuilder to 1.9.0Loïc Bartoletti2021-03-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | * PyQt5: update to 5.15.3 This is a minor feature and bug-fix release. There are corresponding releases of the other PyQt5-related packages. - Added the missing QImage.setAlphaChannel(). - Support for the QtNetworkAuth library has been moved to a separate PyQtNetworkAuth package. - Wheels no longer bundle the corresponding Qt libraries and instead automatically install them from an external wheel. * QScintilla2: update to 2.12.0 This adds support for Qt6 and removes support for Qt4. - Change the new distname (again)i due to a conflict - Use the new sip-build system * devel/py-qtbuilder: update to 1.9.0 * devel/py-sip: fix flavor for sip-distinfo PR: 253865 Exp-run by: antoine Notes: svn path=/head/; revision=567825
* Unbreak INDEXAntoine Brodin2021-03-061-1/+1
| | | | Notes: svn path=/head/; revision=567519
* py-cutadapt: Update to 3.3Jason W. Bacon2021-03-062-5/+5
| | | | | | | | | | | | | Numerous small bug fixes and enhancements, code refactoring py-xopen: Update to 1.1.0 Required by cutadapt 3.3 Drop python 3.5 support Add isal support (not yet utilized in FreeBSD port) Notes: svn path=/head/; revision=567503
* biology/libbigwig: Update 0.4.4 -> 0.4.6Yuri Victorovich2021-03-063-7/+17
| | | | Notes: svn path=/head/; revision=567439
* biology/spoa: fix build on non-x86Piotr Kubaj2021-03-041-1/+7
| | | | | | | | | In file included from /wrkdirs/usr/ports/biology/spoa/work/spoa-4.0.7/src/dispatcher.cpp:7: /usr/local/include/cpuinfo_x86.h:228:2: error: "Including cpuinfo_x86.h from a non-x86 target." #error "Including cpuinfo_x86.h from a non-x86 target." Notes: svn path=/head/; revision=567333
* biology/bwa: fix build on powerpc64lePiotr Kubaj2021-03-021-2/+5
| | | | | | | | | | | | Use GCC's SSE->Altivec translation: In file included from ksw.c:29: In file included from /usr/lib/clang/11.0.1/include/emmintrin.h:13: In file included from /usr/lib/clang/11.0.1/include/xmmintrin.h:13: /usr/lib/clang/11.0.1/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); Notes: svn path=/head/; revision=566960
* biology/py-bx-python: Update 0.8.9 -> 0.8.10Yuri Victorovich2021-02-272-9/+6
| | | | Notes: svn path=/head/; revision=566662
* biology/hyphy: Update to 2.5.29Joseph Mingrone2021-02-252-4/+4
| | | | | | | https://github.com/veg/hyphy/releases/tag/2.5.29 Notes: svn path=/head/; revision=566516
* biology/hyphy: Update to 2.5.28Joseph Mingrone2021-02-233-4/+5
| | | | | | | https://github.com/veg/hyphy/releases/tag/2.5.28 Notes: svn path=/head/; revision=566423
* Introduce devel/onetbb and mark devel/tbb as legacyGanael LAPLANCHE2021-02-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Intel oneAPI tbb 2021.1 (onetbb) has been released[1][2] and has deprecated several interfaces over tbb 2020, breaking most dependent ports. Old tbb 2020 will be kept for a certain time to allow transition but will be removed in a near future as it CONFLICTS with devel/onetbb. New ports should now use devel/onetbb instead of devel/tbb. We tried to move a maximum number of dependent ports to devel/onetbb (or disable dependency when not possible), but some of them still remain stuck to devel/tbb. Remaining ones have not been identified as major dependencies themselves and will be fixed as soon as updates are available from upstream. PR: 252648, 252688 [3], 252683 [4], 252651 [5], 252690 [3], 252693 [3], 252695 [3], 252696 [3], 252786 [3], 252649, 252868 [6], 252870 [5], 252684 [7], 252785 [7] Approved by: yuri [3], jwb [4], thierry [5], FreeBSD@Shaneware.biz [6], maintainer timeout [7] [1] https://software.intel.com/content/www/us/en/develop/articles/intel-oneapi-threading-building-blocks-release-notes.html [2] https://software.intel.com/content/www/us/en/develop/articles/tbb-revamp.html Notes: svn path=/head/; revision=566074
* biology/spoa: Fix build after recent devel/cereal update; Fix LIB_DEPENDSYuri Victorovich2021-02-192-4/+16
| | | | | | | Reported by: fallout Notes: svn path=/head/; revision=566037
* Mark BROKEN in 13/14 (via latest llvm update).Mark Linimon2021-02-171-0/+3
| | | | Notes: svn path=/head/; revision=565807
* biology/diamond: Update to 2.0.7Joseph Mingrone2021-02-172-4/+4
| | | | | | | https://github.com/bbuchfink/diamond/releases/tag/v2.0.7 Notes: svn path=/head/; revision=565520
* Update a few GNUstep ports:Neel Chauhan2021-02-141-1/+1
| | | | | | | | | | | | * devel/gnustep-make: Update to 2.8.0 * lang/gnustep-base: Update to 1.27.0 * x11-toolkits/gnustep-back: update to 0.28.0 * x11-toolkits/gnustep-gui: update to 0.28.0 Also bump PORTREVISION on dependent ports. Notes: svn path=/head/; revision=565273
* biology/py-multiqc: Update to 1.9Jason W. Bacon2021-02-052-6/+7
| | | | | | | | | Fix runtime error due to incompatibility of 1.8 with latest matplotlib Drop python2 support Numerous new features and bug fixes Notes: svn path=/head/; revision=564072
* biology/fastqc: Update to 0.11.9Jason W. Bacon2021-02-042-4/+4
| | | | | | | Minor bug fixes since 0.11.8 Notes: svn path=/head/; revision=564040
* biology/bioparser: Update 3.0.12 -> 3.0.12-2Yuri Victorovich2021-02-033-17/+17
| | | | | | | Install target is added. Notes: svn path=/head/; revision=563906
* biology/py-cutadapt: Update to 3.2Jason W. Bacon2021-02-024-12/+12
| | | | | | | | | | | | | biology/py-dnaio: Update to 0.5.0 archivers/py-xopen: Update to 1.0.0 Numerous bug fixes and enhancements since cutadapt 3.2 Document cutadapt dependency versions dnaio~=0.5.0 xopen~=1.0.0 Bump python dependency to 3.6+ to restrict package builds Notes: svn path=/head/; revision=563844
* biology/bowtie2: Reverse switch to devel/onetbbJason W. Bacon2021-01-301-2/+2
| | | | | | | | | Mistakenly believed onetbb was already committed PR: 252683 Notes: svn path=/head/; revision=563428
* biology/bowtie2: Switch to devel/onetbbJason W. Bacon2021-01-301-1/+2
| | | | | | | | PR: 252683 Submitted by: martymac Notes: svn path=/head/; revision=563427
* biology/vsearch: Update to 2.15.2Jason W. Bacon2021-01-303-10/+11
| | | | | | | | | Code clean up and modernization Reported by: portscout Notes: svn path=/head/; revision=563418
* Update USES=python: math/py-pandas 1.2.0 requires Python 3.7+Sunpoet Po-Chuan Hsieh2021-01-305-5/+5
| | | | | | | PR: 250103 Notes: svn path=/head/; revision=563407
* biology/hyphy: Update to version 2.5.27Joseph Mingrone2021-01-272-4/+4
| | | | | | | https://github.com/veg/hyphy/releases/tag/2.5.27 Notes: svn path=/head/; revision=563045
* biology/kallisto: Add -lz for pending hdf5 upgradeJason W. Bacon2021-01-261-1/+2
| | | | | | | | PR: 252965 Submitted by: thierry Notes: svn path=/head/; revision=562627
* biology/bedtools: Upgrade to 2.30.0Jason W. Bacon2021-01-246-34/+46
| | | | | | | | | Several bug fixes and performance enhancements Reported by: portscout Notes: svn path=/head/; revision=562501
* biology/haplohseq: Fix example scripts for python 3Jason W. Bacon2021-01-236-43/+81
| | | | | | | Also clean up plist Notes: svn path=/head/; revision=562414
* biology/bedtools: License changed upstreamJason W. Bacon2021-01-221-1/+1
| | | | Notes: svn path=/head/; revision=562312
* biology/gatk: Add the WITH_LARGE_FILES option.Yuri Victorovich2021-01-221-0/+30
| | | | Notes: svn path=/head/; revision=562270
* biology/gatk: Update 4.1.8.1 -> 4.1.9.0Yuri Victorovich2021-01-212-6/+6
| | | | Notes: svn path=/head/; revision=562258
* Fix build on GCC-based systems by adding compiler:c++14-lang to USES:Mark Linimon2021-01-201-1/+1
| | | | | | | | | | | CMake Error in CMakeLists.txt: Target "runTests" requires the language dialect "CXX14" , but CMake does not know the compile flags to use to enable it. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=562108
* Add compiler:c++11-lang to USES to fix build on GCC-based systems:Mark Linimon2021-01-201-1/+1
| | | | | | | | | | | CMake Error in CMakeLists.txt: Target "rampler" requires the language dialect "CXX11" , but CMake does not know the compile flags to use to enable it. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=562107
* biology/bioparser: Cosmetic changesYuri Victorovich2021-01-191-9/+9
| | | | Notes: svn path=/head/; revision=562040
* New port: biology/rampler: Standalone module for sampling genomic sequencesYuri Victorovich2021-01-195-0/+66
| | | | Notes: svn path=/head/; revision=562039
* New port: biology/edlib: Fast C++ library for sequence alignment using edit ↵Yuri Victorovich2021-01-195-0/+40
| | | | | | | distance Notes: svn path=/head/; revision=562038
* New port: biology/spoa: C++ implementation of the partial order alignment ↵Yuri Victorovich2021-01-196-0/+166
| | | | | | | (POA) algorithm Notes: svn path=/head/; revision=562036
* New port: biology/biosoup: Collection of C++ header-only data structures for ↵Yuri Victorovich2021-01-194-0/+46
| | | | | | | bioinformatics Notes: svn path=/head/; revision=562035
* New port: biology/bioparser: C++ header only parsing library for several ↵Yuri Victorovich2021-01-194-0/+49
| | | | | | | formats in bioinformatics Notes: svn path=/head/; revision=562033
* Mark BROKEN on riscv64 the same as on aarch64.Mark Linimon2021-01-191-2/+3
| | | | | | | | | | While here, pet portlint (Makevar order). Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com build testing Notes: svn path=/head/; revision=562006
* Mark BROKEN on riscv64 the same as armv*:Mark Linimon2021-01-191-0/+1
| | | | | | | | | | | | # make[2]: cannot open makefile.. Note the filname reported is "Makefile." (e.g. probably empty suffix). Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com build testing Notes: svn path=/head/; revision=562005
* biology/vsearch: enable on powerpc64lePiotr Kubaj2021-01-161-1/+1
| | | | Notes: svn path=/head/; revision=561748