Robert C. Edgar has developed a great program Usearch (https://drive5.com/usearch/download.html) However, the 32 bit version has limitations, the 64 bit version costs almost $ 1500 (
usearch -otutab_merge otutable1.txt,otutable2.txt,otutable3.txt -output otutable_merged.txt
This command is able to combine OTU tables. But due to the large amount of data, the 32-bit version cannot do this.
What does this command do? Here's an example
Table1
Sample 1
species1 0
species2 3
Table2
Sample 2
species1 1
species3 2
Output tab-delimited table
Sample1 Samlpe2
species1 0 1
species2 3 0
species3 0 2
Can you please tell me if there are analogs without limitation? I'm sure that python can do this, but maybe there are ready-made solutions.
Hi,
Did you hear about
vsearch
? (please see the link)As it appears stated in the github repository:
Although I don't know if the tool has the command that you're looking for. I was looking into their workflow in their wiki and I think they processed the samples in a slightly different way.
In any case, you may consider using this tool in the future, since it is open source and the 64-bit is free.
I hope this helps,
António
Many thanks, António for the answer!
I looked at the output of --help and did not find a similar command usearch -otutab_merge