When I sum all abundance values from one rank (for example S), it did not match with the root abundance. Why's that ? In some cases, differences can be huge. This can be observed even for high-level rank such as division. I feel like I'm missing something obvious.
Here is the command line I'm using to observe that :
cat report.txt | awk '{ if ( $4 == "D1" ) { sum+=$1 }} END { print sum }'
Thanks !