Skip to content

Commit

Permalink
undocumented beta release tested with beta tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cnotred committed Nov 25, 2020
1 parent 7b3f015 commit e3f346d
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 22 deletions.
Binary file modified binaries/macosx/t_coffee
Binary file not shown.
2 changes: 1 addition & 1 deletion build/web-readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
T-Coffee distribution
=====================
Version_13.45.23.2a569b9 #_#UPDATE_VERSION -- Populated by edit_version.pl
Version_13.45.24.7b3f015 #_#UPDATE_VERSION -- Populated by edit_version.pl
The version ID is organized as follows: <Major Release>.<Latest Stable>.<Latest Beta>.<Github version tag>
Content of this directory:
Linux Installation:
Expand Down
2 changes: 1 addition & 1 deletion docs/.html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 7e7906b9710f0cffff5485a53a1771b9
config: c122ad66236c9fbda053fb251bddea29
tags: 33eac41acc08762151beb8f3b7b86c8f
Binary file modified docs/.html/.doctrees/environment.pickle
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/.html/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: 'Version_13.45.23.2a569b9',
VERSION: 'Version_13.45.24.7b3f015',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
Expand Down
6 changes: 3 additions & 3 deletions docs/.html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>T-Coffee Version_13.45.23.2a569b9 documentation</title>
<title>T-Coffee Version_13.45.24.7b3f015 documentation</title>



Expand Down Expand Up @@ -58,7 +58,7 @@


<div class="version">
Version_13.45.23.2a569b9
Version_13.45.24.7b3f015
</div>


Expand Down Expand Up @@ -716,7 +716,7 @@

<li><a href="index.html#document-index">Docs</a> &raquo;</li>

<li>T-Coffee Version_13.45.23.2a569b9 documentation</li>
<li>T-Coffee Version_13.45.24.7b3f015 documentation</li>


<li class="wy-breadcrumbs-aside">
Expand Down
Binary file modified docs/.html/objects.inv
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'Version_13.45.23.2a569b9' #_#UPDATE_VERSION_TAG1 -- Populated by edit_version.pl
version = u'Version_13.45.24.7b3f015' #_#UPDATE_VERSION_TAG1 -- Populated by edit_version.pl
# The full version, including alpha/beta/rc tags.
release = u'Version_13.45.23.2a569b9' #_#UPDATE_VERSION_TAG2 -- Populated by edit_version.pl
release = u'Version_13.45.24.7b3f015' #_#UPDATE_VERSION_TAG2 -- Populated by edit_version.pl

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
17 changes: 6 additions & 11 deletions lib/dp_lib/phylo3d.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,30 +86,25 @@ double scan_maxd (p3D *D)
if (getenv ("soft_maxd_4_TCOFFEE")){start=0; end=0;}
else if ( getenv ("strict_maxd_4_TCOFFEE")){start=1; end=1;}
else{start=0; end=1;}

for (a=scan3D_min; a<scan3D_max; a++)
for (strict=start; strict<=end; strict++)
{

for (strict=start; strict<=end; strict++)
for (a=scan3D_min; a<scan3D_max; a++)
{
static char *treeF=vtmpnam (NULL);
D->maxd=(double)a*100;
cputenv ("strict_maxd_4_TCOFFEE=%d", strict);
makerep(D,0);
filter_columns_with_dist (A,D->pos, D->colrep, D->dm3d, D->maxd);




if (aln2dm(D,A))
{
dist2nj_tree (D->dm, A->name, A->nseq, treeF);
T=main_read_tree(treeF);
rf=simple_tree_cmp(RT,T, S, 1);

if (verbose())fprintf ( stderr, "\n!# scan : +maxd %3d %-12s ==> RF vs reftree %5.2f Nsites: %5d", a, (strict)?"+strict_maxd":"+soft_maxd", (float) 100-rf,D->nsites);
if (verbose())fprintf ( stderr, "\n!# scan : +maxd %3d %-12s ==> RF vs reftree %5.2f Nsites: %5d", a, (strict)?"+strict_maxd":"+soft_maxd", (float) 100-rf,D->nsites);

if ( rf>=brf)
if ( rf>brf || (rf==brf && D->nsites>bnsites) || (rf==brf && (double)a>=bmaxd))
{
brf=rf;
bmaxd=(double)a;
Expand All @@ -125,11 +120,11 @@ double scan_maxd (p3D *D)
}
if (brf>0)
{
if (verbose())fprintf ( stderr, "\n!# scan result: +maxd %3d %-12s ==> RF vs reftree %5.2f Nsites: %5d\n", (int)bmaxd, (strict)?"strict_maxd":"soft_maxd", (float) 100-brf,bnsites);
if (verbose())fprintf ( stderr, "\n!# scan result : +maxd %3d %-12s ==> RF vs reftree %5.2f Nsites: %5d\n", (int)bmaxd, (strict)?"+strict_maxd":"+soft_maxd", (float) 100-brf,bnsites);
}
else
{
if (verbose())fprintf ( stderr, "\n!# WARNING -- Missing Values -- Could not find any suitable threshold - Use max value %d Angstrom", (int)bmaxd);
if (verbose())fprintf ( stderr, "\n!# WARNING -- Missing Values -- Could not find any suitable threshold - Use max value +maxd %d Angstrom", (int)bmaxd);
}
free_sequence (S, -1);
cputenv ("strict_maxd_4_TCOFFEE=%d", bstrict);
Expand Down
2 changes: 1 addition & 1 deletion lib/version/build_version.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
23
24
2 changes: 1 addition & 1 deletion lib/version/github.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* master 2a569b9 undocumented beta release tested with beta tests
* master 7b3f015 undocumented beta release tested with beta tests
2 changes: 1 addition & 1 deletion lib/version/version_number.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version_13.45.23.2a569b9
Version_13.45.24.7b3f015

0 comments on commit e3f346d

Please sign in to comment.