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 Dec 1, 2020
1 parent 2649ebf commit 96a2885
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 13 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.26.0d07ef6 #_#UPDATE_VERSION -- Populated by edit_version.pl
Version_13.45.27.2649ebf #_#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: 13b7b46f06e22259ae5fb374cfaa8ad6
config: 8b0f3a1086ba39bf510b865ae969158c
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.26.0d07ef6',
VERSION: 'Version_13.45.27.2649ebf',
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.26.0d07ef6 documentation</title>
<title>T-Coffee Version_13.45.27.2649ebf documentation</title>



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


<div class="version">
Version_13.45.26.0d07ef6
Version_13.45.27.2649ebf
</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.26.0d07ef6 documentation</li>
<li>T-Coffee Version_13.45.27.2649ebf 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.26.0d07ef6' #_#UPDATE_VERSION_TAG1 -- Populated by edit_version.pl
version = u'Version_13.45.27.2649ebf' #_#UPDATE_VERSION_TAG1 -- Populated by edit_version.pl
# The full version, including alpha/beta/rc tags.
release = u'Version_13.45.26.0d07ef6' #_#UPDATE_VERSION_TAG2 -- Populated by edit_version.pl
release = u'Version_13.45.27.2649ebf' #_#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
14 changes: 12 additions & 2 deletions lib/dp_lib/util_dp_drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -2812,6 +2812,7 @@ Alignment * align_two_structures ( Sequence *S, int s1, int s2, char *mode)
{
static char *in=vtmpnam (NULL);
static char *out=vtmpnam (NULL);
static char *command=NULL;
FILE *fp;

fp=vfopen (in, "w");
Expand All @@ -2822,8 +2823,17 @@ Alignment * align_two_structures ( Sequence *S, int s1, int s2, char *mode)
vfclose (fp);


if (verbose()==2)printf_system ("t_coffee -in %s -template_file %s -method %s -outfile=%s -output fasta_aln",in,in,mode, out);
else printf_system ("t_coffee -in %s -template_file %s -method %s -outfile=%s -output fasta_aln -quiet >/dev/null 2>/dev/null",in,in,mode, out);

if (verbose()==2)command=csprintf (command,"t_coffee -in %s -template_file %s -method %s -outfile=%s -output fasta_aln",in,in,mode, out);
else command=csprintf (command,"t_coffee -in %s -template_file %s -method %s -outfile=%s -output fasta_aln -quiet >/dev/null 2>/dev/null",in,in,mode, out);
system (command);

if (!check_file_exists (out))
{
command=csprintf (command,"t_coffee -in %s -template_file %s -method %s -outfile=%s -output fasta_aln",in,in,mode, out);
system (command);
printf_exit ( EXIT_FAILURE, stderr, "\nCould not align %s and %s with %s [FATAL:%s]",S->name[s1],S->name[s2],mode,PROGRAM);
}
return quick_read_fasta_aln (NULL,out);
}

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 @@
26
27
2 changes: 1 addition & 1 deletion lib/version/github.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* master 0d07ef6 undocumented beta release tested with beta tests
* master 2649ebf 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.26.0d07ef6
Version_13.45.27.2649ebf

0 comments on commit 96a2885

Please sign in to comment.