-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Building scripts prepared for version RC1 (0.99.1)
Former-commit-id: 574673a
- Loading branch information
Cristina Yenyxe Gonzalez Garcia
committed
May 27, 2013
1 parent
e6ae944
commit 875f7de
Showing
4 changed files
with
23 additions
and
11 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
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ Import('env') # exported by parent SConstruct | |
|
||
# Here's the core info for the DEBIAN/control file of the package | ||
DEBNAME = "hpg-variant" | ||
DEBVERSION = "0.4" | ||
DEBVERSION = "0.99.1" | ||
DEBMAINT = "Cristina Yenyxe Gonzalez Garcia <[email protected]>" | ||
DEBARCH = "amd64" | ||
DEBDEPENDS = "libc6, libconfig8, libcurl4-openssl-dev, libgsl0ldbl, libxml2, zlib1g" | ||
DEBDEPENDS = "libc6, libcurl4-openssl-dev, libgsl0ldbl, libxml2, zlib1g" | ||
DEBSECTION = "science" | ||
DEBDESC = ''.join([ "Bioinformatics tool suite for analyzing genomic variations\n", | ||
" HPG Variant is a suite for the analysis of genomic data extracted from Next\n", | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%define name hpg-variant | ||
%define version 0.4 | ||
%define version 0.99.1 | ||
Name: %{name} | ||
Version: %{version} | ||
Release: 1%{?dist} | ||
|
@@ -12,13 +12,12 @@ Source0: %{name}-%{version}.tar.gz | |
BuildRequires: gcc | ||
BuildRequires: glibc-devel | ||
BuildRequires: scons | ||
BuildRequires: libconfig-devel | ||
BuildRequires: libcurl-devel | ||
BuildRequires: gsl-devel | ||
BuildRequires: libxml2-devel | ||
BuildRequires: ncurses-devel | ||
BuildRequires: zlib-devel | ||
|
||
Requires: libconfig | ||
Requires: libcurl | ||
Requires: gsl | ||
Requires: libxml2 | ||
|
@@ -55,6 +54,19 @@ cp bin/vcf-info-fields.conf %{buildroot}%{_sysconfdir}/%{name}/ | |
|
||
|
||
%changelog | ||
* Wed May 07 2013 Cristina Yenyxe Gonzalez <[email protected]> - 0.99.1 | ||
- New VCF filters by gene, region+type, being or not an indel, and inheritance | ||
pattern (dominant/recessive) | ||
- Multi-threaded implementation of the VCF filtering tool | ||
- GFF/BED can be used as input for region filtering | ||
- New VCF statistics about mendelian errors per sample, being or not an indel, | ||
inheritance pattern per variant | ||
- Possibility of saving VCF statistics to SQLite DB file | ||
- Great reduction of memory usage, performance improvement upto 3x in VCF | ||
merging tool | ||
- VCF splitting by coverage intervals | ||
- Miscellaneous: Some library dependencies packaged inside the application | ||
|
||
* Mon Mar 04 2013 Cristina Yenyxe Gonzalez <[email protected]> - 0.4 | ||
- Filter output uses default names, 'your_vcf_file.vcf.filtered' and | ||
'your_vcf_file.vcf.rejected', 'out' argument reserved for tool output | ||
|