-
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.
- Loading branch information
Cristina Yenyxe Gonzalez Garcia
committed
Nov 7, 2013
1 parent
fc1864c
commit 272c2fb
Showing
7 changed files
with
22 additions
and
13 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
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,7 +4,7 @@ Import('env') # exported by parent SConstruct | |
|
||
# Here's the core info for the DEBIAN/control file of the package | ||
DEBNAME = "hpg-variant" | ||
DEBVERSION = "0.99.4" | ||
DEBVERSION = "1.0" | ||
DEBMAINT = "Cristina Yenyxe Gonzalez Garcia <[email protected]>" | ||
DEBARCH = "amd64" | ||
DEBDEPENDS = "libc6, libcurl4-openssl-dev, libgsl0ldbl, libxml2, zlib1g" | ||
|
@@ -18,8 +18,9 @@ DEBDESC = ''.join([ "Bioinformatics tool suite for analyzing genomic variations\ | |
" * hpg-var-gwas conducts genomic-wide association analysis such as chi-square\n", | ||
" and Fisher's exact test, and family-based analysis such as transmission\n", | ||
" disequilibrium test (TDT).\n", | ||
" * hpg-var-vcf allows one to preprocess files containing genome variations in\n", | ||
" Variant Call Format." ]) | ||
" * hpg-var-vcf allows to preprocess files containing genome variations in\n", | ||
" Variant Call Format. Filtering, merging, splitting and retrieving \n" | ||
" statistics are the features currently implemented." ]) | ||
|
||
DEBFILES = [ | ||
# Now we specify the files to be included in the .deb | ||
|
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.99.4 | ||
%define version 1.0 | ||
Name: %{name} | ||
Version: %{version} | ||
Release: 1%{?dist} | ||
|
@@ -32,8 +32,9 @@ It contains three binaries: | |
* hpg-var-gwas conducts genomic-wide association analysis such as chi-square | ||
and Fisher's exact test, and family-based analysis such as transmission | ||
disequilibrium test (TDT). | ||
* hpg-var-vcf allows one to preprocess files containing genome variations in | ||
Variant Call Format. | ||
* hpg-var-vcf allows to preprocess files containing genome variations in | ||
Variant Call Format. Filtering, merging, splitting and retrieving statistics | ||
are the features currently implemented. | ||
|
||
%prep | ||
%setup -q | ||
|
@@ -68,6 +69,13 @@ cp bin/bash_completion/hpg-var-vcf %{buildroot}%{_sysconfdir}/bash_completion.d/ | |
|
||
|
||
%changelog | ||
* Thu Nov 07 2013 Cristina Yenyxe Gonzalez <[email protected]> - 1.0 | ||
- Support for multigenerational families in PED files | ||
- Merge tool notifies when files are unsorted | ||
- All tools notify when output files can't be created | ||
- Sample statistics added to database generated by hpg-var-vcf stats | ||
- Logging output redirection: DEBUG/INFO to stdout, WARN/ERROR/FATAL to stderr | ||
|
||
* Wed Sep 18 2013 Cristina Yenyxe Gonzalez <[email protected]> - 0.99.4 | ||
- Great reduction of memory usage in the VCF merging tool allows to merge | ||
hundreds of VCF files at twice the previous speed | ||
|
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