--checkm-tab-table #263
Unanswered
sarehaghababaee
asked this question in
Q&A
Replies: 2 comments 6 replies
-
Hi, Looks like something is amiss with your input table - what is the format? |
Beta Was this translation helpful? Give feedback.
2 replies
-
As I explained above, in my first attempt I used --checkm2-quality-report and used the output of CheckM2 as the input for this command. But, I faced the error that I need to provide --checkm-tab-table as well. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using CoverM version 0.7.0.
I ran the following command to calculate relative abundance, mean coverage, and to perform genome clustering and dereplication, but I encountered the following error:
Command:
cpmmand: coverm genome
-1 "$dir/04.trimmed_fasta/${SAMPLE}_1.fa"
-2 "$dir/04.trimmed_fasta/${SAMPLE}_2.fa"
--genome-fasta-directory "$dir/25.CoverM/genomes"
-x fa
--output-file "$dir/25.CoverM/coverm_output/${SAMPLE}_coverm.tsv"
--output-format dense
--methods relative_abundance mean
--min-read-percent-identity 95
--min-read-aligned-percent 75
--dereplicate
--checkm2-quality-report "$dir/17.checkm2/output/quality_report.tsv"
--min-completeness 0
--max-contamination 100
--dereplication-quality-formula completeness-5contamination
--dereplication-output-cluster-definition "$dir/25.CoverM/coverm_output/cluster_definitions.tsv"
--dereplication-output-representative-list "$dir/25.CoverM/coverm_output/representative_paths.txt"
--threads "$THR"
Error:
the following required arguments were not provided: --checkm-tab-table
I only ran CheckM2 and have the quality_report.tsv output from it. I did not run the original CheckM. What should I do in this case?
In another attempt, I added the --checkm-tab-table argument and gave it the same quality_report.tsv from CheckM2. The command I ran was:
Commnad:
coverm genome
-1 "$dir/04.trimmed_fasta/${SAMPLE}_1.fa"
-2 "$dir/04.trimmed_fasta/${SAMPLE}_2.fa"
--genome-fasta-directory "$dir/25.CoverM/genomes"
-x fa
--output-file "$dir/25.CoverM/coverm_output/${SAMPLE}_coverm.tsv"
--output-format dense
--methods relative_abundance mean
--min-read-percent-identity 95
--min-read-aligned-percent 75
--dereplicate
--checkm2-quality-report "$dir/17.checkm2/output/quality_report.tsv"
--checkm-tab-table "$dir/17.checkm2/output/quality_report.tsv"
--min-completeness 0
--max-contamination 100
--dereplication-quality-formula completeness-5contamination
--dereplication-output-cluster-definition "$dir/25.CoverM/coverm_output/cluster_definitions.tsv"
--dereplication-output-representative-list "$dir/25.CoverM/coverm_output/representative_paths.txt"
--threads "$THR"
conda deactivate
echo "Done: $(date)."
However, I received the following error:
error parsing contamination in checkm tab table: ParseFloatError { kind: Invalid }
Could you guide me how can I solve this issue?
Beta Was this translation helpful? Give feedback.
All reactions