Skip to content

Commit 6ae314c

Browse files
committed
Prepare for v.1.1.0
1 parent 54e234e commit 6ae314c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

TOOLS

+2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ component-cutter tools.ComponentCutterMain
66
component-extractor tools.ComponentExtractorMain Extract graph components from tangled graph based on pivot k-mers
77
component-paths tools.ComponentPathsMain Extracts paths in the components
88
dist-matrix-calculator tools.DistanceMatrixCalculatorMain Calculates distance matrix using features values
9+
double-view tools.DoubleViewMain Converts two binary k-mers files to single text file
910
features-calculator tools.FeaturesCalculatorMain Calculates features values for input reads files
1011
heatmap-maker tools.HeatMapMakerMain constructs heatmap with dendrogram for distance matrix
1112
kmer-counter tools.KmersCounterMain Count k-mers in given reads with ArrayLong2IntHashMap
1213
kmer-counter-many tools.KmersCounterForManyFilesMain Count k-mers for many files independently
1314
kmer-counter-posneg tools.KmersCounterPositiveNegative Count k-mers for files from two groups independently
1415
kmers-filter tools.KmersFilter Filter k-mers from test set according to known samples
16+
kmers-grouped-counter tools.KmersGroupedSamplesCounter Count number of samples from 3 groups containing specified k-mers
1517
kmers-multiple-filters tools.KmersMultipleFilters Filter k-mers from test set according to three specified sets
1618
kmers-samples-counter tools.KmersSamplesCounter Count number of samples containing k-mers from multiple samples
1719
matrix-builder tools.DistanceMatrixBuilderMain Builds the distance matrix for input sequences

build.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<project name="jarsBuilder" default="metafast">
2-
<property name="VERSION" value="1.0.0"/>
2+
<property name="VERSION" value="1.1.0"/>
33
<exec executable="git" outputproperty="revision">
44
<arg value="rev-parse"/>
55
<arg value="--short"/>
@@ -74,8 +74,8 @@
7474
<property name="project.sh" value="${jars.dir}/${project.name}.sh"/>
7575
<property name="project.bat" value="${jars.dir}/${project.name}.bat"/>
7676

77-
<property name="ant.build.javac.source" value="1.6"/>
78-
<property name="ant.build.javac.target" value="1.6"/>
77+
<property name="ant.build.javac.source" value="1.8"/>
78+
<property name="ant.build.javac.target" value="1.8"/>
7979

8080

8181

0 commit comments

Comments
 (0)