mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add fastqc
This commit is contained in:
parent
7f4e95ab12
commit
2fc72bea1e
3 changed files with 40 additions and 0 deletions
21
BioArchLinux/fastqc/PKGBUILD
Normal file
21
BioArchLinux/fastqc/PKGBUILD
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Maintainer: Sedeer el-Showk <s.elshowk@netherrealm.net>
|
||||
|
||||
pkgname=fastqc
|
||||
pkgver=0.11.9
|
||||
pkgrel=1
|
||||
pkgdesc='A quality control tool for high throughput sequence data.'
|
||||
arch=('any')
|
||||
url="http://www.bioinformatics.babraham.ac.uk/projects/fastqc"
|
||||
license=('GPL3')
|
||||
depends=('perl' 'java-environment>=6' 'ttf-dejavu')
|
||||
source=("http://www.bioinformatics.babraham.ac.uk/projects/$pkgname/${pkgname}_v$pkgver.zip")
|
||||
md5sums=('ee7901b681bb2762d75d5a56c7ec6958')
|
||||
|
||||
package() {
|
||||
mkdir $pkgdir/opt/
|
||||
cp -r $srcdir/FastQC/ $pkgdir/opt/
|
||||
|
||||
mkdir -p "${pkgdir}/usr/bin/"
|
||||
chmod 755 $pkgdir/opt/FastQC/fastqc
|
||||
ln -s "/opt/FastQC/fastqc" "${pkgdir}/usr/bin/"
|
||||
}
|
10
BioArchLinux/fastqc/lilac.py
Executable file
10
BioArchLinux/fastqc/lilac.py
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
update_pkgver_and_pkgrel(_G.newver.lstrip('v'))
|
||||
run_cmd(['updpkgsums'])
|
||||
|
||||
def post_build():
|
||||
git_add_files('PKGBUILD')
|
||||
git_commit()
|
9
BioArchLinux/fastqc/lilac.yaml
Executable file
9
BioArchLinux/fastqc/lilac.yaml
Executable file
|
@ -0,0 +1,9 @@
|
|||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: starsareintherose@outlook.com
|
||||
build_prefix: extra-x86_64
|
||||
update_on:
|
||||
- source: regex
|
||||
url: "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/"
|
||||
regex: 'Version (\d+.\d+.\d+) released'
|
||||
time_limit_hours: 4
|
Loading…
Add table
Reference in a new issue