# HG changeset patch # User peterjc # Date 1424879444 18000 # Node ID da92fef9011761f5ad39e60f72f6cddc27efdaaf # Parent 236046d1d44154f36379320591b2672685f19ae6 Uploaded v0.0.20 with new citation information diff -r 236046d1d441 -r da92fef90117 README.rst --- a/README.rst Wed Nov 26 06:54:23 2014 -0500 +++ b/README.rst Wed Feb 25 10:50:44 2015 -0500 @@ -41,11 +41,12 @@ (contribution from Nicola Soranzo) v0.0.18 - Add retries to BLAST XML merge code. - Modify display_data method to allow unit tests to function. -v0.0.19 - Add ``blastdbp`` datatype for BLAST protein domain databases, for use +v0.0.19 - Add ``blastdbd`` datatype for BLAST protein domain databases, for use with makeprofiledb and rpsblast (contribution from Bjoern Gruening). - Add ``pssm-asn1`` datatype for Position Specific Scoring Matrices (PSSMs) stored in NCBI's "scoremat" ASN.1 format (usually named - as *.smp), used as input files for makeprofiledb. + as ``*.smp``), used as input files for makeprofiledb. +v0.0.20 - Added "NCBI BLAST+ integrated into Galaxy" preprint citation. ======= ====================================================================== @@ -118,6 +119,16 @@ described above. +Citation +======== + +Please cite the following paper (currently available as a preprint): + +NCBI BLAST+ integrated into Galaxy. +P.J.A. Cock, J.M. Chilton, B. Gruening, J.E. Johnson, N. Soranzo +bioRxiv DOI: http://dx.doi.org/10.1101/014043 (preprint) + + Licence (MIT) ============= diff -r 236046d1d441 -r da92fef90117 blast.py --- a/blast.py Wed Nov 26 06:54:23 2014 -0500 +++ b/blast.py Wed Feb 25 10:50:44 2015 -0500 @@ -76,7 +76,6 @@ log.error("BLAST XML file %s missing" % f) raise ValueError("BLAST XML file %s missing" % f) h = open(f) - body = False header = h.readline() if not header: out.close()