Permalink
Please sign in to comment.
Browse files
Adopts "git flow". This is an initial ur-commit on master.
Merges 1.1 branch (f5feaab) into master. Updated release version to 1.1.1x, date to May 2016. Changes to make it compile with new HMMER 3.1 master branch, (h3-master) and Easel master branch (master): - P7_MSVDATA => P7_SCOREDATA; p7_msvdata_*() => p7_scoredata_*(). - p7_MSVFilter_longtarget => SSV - p7_domaindef_ByPosteriorHeuristics prototype changes; now has ntseq arg (pass NULL) and some trailing args (also pass NULL) - p7_pli_ExtendAndMergeWindows() prototype change: remove <seqlen> arg - p7_Builder() prototype change: adds two undocumented trailing args, pass NULL - esl_sqio_ReadBlock() now takes max_residues and max_seqs args. CM_MAX_RESIDUE_COUNT for max_residues - esl_composition_*() and esl_msaweight_*() calls require .h inclusion - cm_tophits_RemoveOrMarkOverlaps adds do_clans arg; pass FALSE revised how 'make check' copies easel miniapps. cp fails, because files are identical; added if check for miniapps existing already. in configure.ac, revised how the impl symlink is made. AC_CONFIG_LINKS should not be used to link directories. Instead, do AC_CONFIG_COMMANDS. (TODO: H3 configura.ac needs this too.) Avoid zero mallocs; use ESL_MAX(1, size) as workaround. (cm_mx.c, cm_pipeline.c) Fixed missing comma in --notrunc ESL_OPTIONS incomp list. bug-i44.pl needed chmod +x
- Loading branch information...
Showing
with
351 additions
and 315 deletions.
- +46 −0 COPYRIGHT
- +4 −4 Makefile.in
- +31 −43 configure.ac
- +1 −0 documentation/userguide/cmbuild.tex
- +1 −0 documentation/userguide/formats.tex
- +0 −1 documentation/userguide/install.tex
- +1 −0 documentation/userguide/main.tex
- +1 −0 documentation/userguide/more.tex
- +1 −0 documentation/userguide/pipeline.tex
- +85 −82 documentation/userguide/tutorial.tex
- +37 −73 rmark/rmark-create.c
- +2 −2 src/cm.c
- +34 −14 src/cm_file.c
- +16 −16 src/cm_mx.c
- +16 −14 src/cm_pipeline.c
- +7 −7 src/cm_tophits.c
- +6 −6 src/cmalign.c
- +5 −1 src/cmbuild.c
- +1 −1 src/cmcalibrate.c
- +7 −7 src/cmscan.c
- +37 −35 src/cmsearch.c
- +12 −9 src/infernal.h
- 0 testsuite/bug-i44.pl
| @@ -0,0 +1,46 @@ | ||
| +Infernal - inference of RNA secondary structural alignments | ||
| +@INFERNAL_COPYRIGHT@ | ||
| +------------------------------------------------------------------ | ||
| + | ||
| +Copyright (C) 2013 HHMI Janelia Farm Research Campus | ||
| + | ||
| + Portions Copyright (C) 1991-2013 Sean R. Eddy | ||
| + Portions Copyright (C) 2005-2013 Eric P. Nawrocki | ||
| + Portions Copyright (C) 2005-2011 Diana L. Kolbe | ||
| + Portions Copyright (C) 2004 Zasha Weinberg | ||
| + Portions Copyright (C) 1990 Don G. Gilbert | ||
| + Portions Copyright (C) 1995-2006 Washington University in St. Louis | ||
| + Portions Copyright (C) 1992-1995 Medical Research Council, UK | ||
| + Portions Copyright (C) 2004 University of Washington, Seattle | ||
| + Portions Copyright (C) 1986,1993,1995 University of Toronto | ||
| + Portions Copyright (C) 1989-2001 Free Software Foundation | ||
| + Portions Copyright (C) 1991 Massachusetts Institute of Technology | ||
| + | ||
| +Infernal includes the HMMER software package, which has its own license and | ||
| +copyright information. See hmmer/COPYRIGHT and hmmer/LICENSE. | ||
| + | ||
| +Infernal uses the Easel software library, which has its own license and | ||
| +copyright information. See easel/COPYRIGHT and easel/LICENSE. | ||
| + | ||
| +Infernal is distributed under the terms of the GNU General Public | ||
| +License version 3 (GPLv3). See the file LICENSE for details. | ||
| + | ||
| +This program is free software: you can redistribute it and/or modify | ||
| +it under the terms of the GNU General Public License as published by | ||
| +the Free Software Foundation, either version 3 of the License, or (at | ||
| +your option) any later version. | ||
| + | ||
| +This program is distributed in the hope that it will be useful, | ||
| +but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| +GNU General Public License for more details. | ||
| + | ||
| +A copy of the GNU General Public License is in the file LICENSE. You | ||
| +may also obtain a copy from <http://www.gnu.org/licenses/>. | ||
| + | ||
| +------------------------------------------------------------------ | ||
| +The Infernal development team | ||
| +HHMI Janelia Farm Research Campus | ||
| +http://infernal.janelia.org/ | ||
| + | ||
| + |
74
configure.ac
Oops, something went wrong.
0 comments on commit
a62a380