Skip to content

Commit

Permalink
(OK) v0.4.1: remove useless output on submafft
Browse files Browse the repository at this point in the history
  • Loading branch information
wym6912 committed Dec 30, 2021
1 parent edbf0cd commit 7d6e615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion msa_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#if REPORTCOSTS
#include <time.h>
#endif
#define VERSION "0.4.0"
#define VERSION "0.4.1"
#define SHOWVERSION reporterr( "%s (%s, %d-bit) Version " VERSION "\n\n", "MSA align", (seq_type == 1) ? "nuc" : ((seq_type == 0) ? "unknown" : "aa"), sizeof(int *) * 8 )
// #define FILESAVE
#define MIN(X, Y) ((X) > (Y) ? (Y) : (X))
Expand Down
2 changes: 1 addition & 1 deletion submafft
Submodule submafft updated 48 files
+116 −90 Galign11.c
+86 −59 Kband.c
+12 −9 Kband.h
+3 −3 Makefile
+142 −92 SAalignmm.c
+172 −137 Salignmm.c
+1 −1 defs.c
+2 −2 io.c
+1 −2 mltaln.h
+17 −0 mtxutl.c
+3 −0 mtxutl.h
+7 −0 profilealign.c
+35 −19 staralign.c
+3 −0 test/profilealign-test3/README.md
+3 −0 test/profilealign-test3/raw/cluster_order
+6 −0 test/profilealign-test3/raw/tmp
+4 −0 test/profilealign-test3/raw/tmp_0.clstr
+4 −0 test/profilealign-test3/raw/tmp_1.clstr
+4 −0 test/profilealign-test3/raw/tmp_2.clstr
+3 −0 test/profilealign-test4/README.md
+44 −0 test/profilealign-test4/raw/BBA0001.fasta
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_0.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_1.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_10.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_11.clstr
+24 −0 test/profilealign-test4/raw/BBA0001.fasta_12.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_13.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_14.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_15.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_16.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_17.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_18.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_19.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_2.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_20.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_21.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_22.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_3.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_4.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_5.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_6.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_7.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_8.clstr
+2 −0 test/profilealign-test4/raw/BBA0001.fasta_9.clstr
+23 −0 test/profilealign-test4/raw/tmp
+2 −4 test/staralign-test6/tmp_293.center
+21 −4 test/staralign-test7/tmp_221.center
+23 −4 test/staralign-testmerge3/tmp_31.center

0 comments on commit 7d6e615

Please sign in to comment.