Hi,
I’m running paired-end metagenome sequencing files in Humann3.9.
My first question is:
I have only three results - which are genefamilies.tsv, pathabundance.tsv and pathcoverage.tsv.
I know there should be 2 more output files from 1 file.
Why I don’t get the other two results?
And my second question is:
in case of using paired-end sequencing data, how can I merge those files (R1.fastq / R2.fastq) and interpret the results?
In previous questions in this forum - people suggested that there’s no point of concatenating reads before running Humann.
In this case, can I merge the results like this?
$ humann_join_tables --input humann_output/ --output humann_merged.tsv --file_name pathway_abundance
Thanks.
P.S.
FYI, Here’s a part of my script for running:
tail -n +2 “$SAMPLESHEET” | awk -F’\t’ ‘{print $2}’ | while read -r SAMPLE_NAME; do
SAMPLE_PATH=“$INPUT_DIR/$SAMPLE_NAME”
echo “Processing: $SAMPLE_NAME”
humann --input "$SAMPLE_PATH" --output "$OUTPUT_DIR"
if [ $? -eq 0 ]; then
echo "Completed: $SAMPLE_NAME"
else
echo "Failed: $SAMPLE_NAME"
fi
done