We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KEGGdecoder requires the following input format. note the underscore between genome id and read id.
genomeId_fastaId \t keggid
Otherwise KEGGdecoder thinks each entry is its own genome, and segfalts. The following code gets the appropriate format
cat GCA_001508995.1_ASM150899v1_protein_kofamscan.txt | sed -ne 's/.*/GCA001508995_&/p' > GCA_001508995.1_ASM150899v1_protein_kofamscan_prefix.txt c cat kofamscan_results.txt | sed -ne 's/.*/kofamscan_&/p' > kofamscan_results_prefix.txt cat *prefix.txt > kofamscan_res_prefix.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
KEGGdecoder requires the following input format. note the underscore between genome id and read id.
Otherwise KEGGdecoder thinks each entry is its own genome, and segfalts. The following code gets the appropriate format
The text was updated successfully, but these errors were encountered: