Hi t tried to work with this, but there are some errors occurring, Do you have code or any source material to work on this ? Mensur Dlakic
Hi,
I have a protein sequence file (about 14.9 GB) in FASTA format. Each sequence has an ORF ID in the header line. I want to find the KEGG Orthology (KO) IDs that match these ORFs.
Can someone please suggest a tool or workflow that can handle large files and help me map ORF IDs to KO IDs?
Thanks in advance!
1 answer
There is a tool made exactly for that purpose:
I don't think anyone can help you when the only feedback you provide is "there are some errors occurring." If I told you that I tried to build a house but there were some problems, would you be able to offer any advice to me?
What I do know is when I installed all the dependencies outlined on that GitHub page and provided correct input files, everything worked. An educated guess is that you didn't do one or the other.
Hi, I set up the environment in HCC, and my FASTA file contains 98 sequences. This is my SLURM script, but I’ve tried running it changing time duration without success.
#!/bin/bash
#SBATCH --job-name=kofamscan
#SBATCH --output=kofamscan.out
#SBATCH --error=kofamscan.err
#SBATCH --time=5:59:00
#SBATCH --mem=32G
#SBATCH --cpus-per-task=8
source ~/miniconda3/etc/profile.d/conda.sh
conda activate kofamscan_env
./exec_annotation \
-o kofam_output.txt \
-f detail-tsv \
-p profiles/ \
-k ko_list \
--cpu 8 \
test.faa
It keeps giving the following error, I and also tried changing cpu allocation.
“slurmstepd: error: * JOB 10654468 ON c2023 CANCELLED AT 2025-06-10T21:46:45 DUE TO TIME LIMIT *”
What should I do? What could be the issue?
JOB 10654468 ON c2023 CANCELLED AT 2025-06-10T21:46:45 DUE TO TIME LIMIT *”
You are asking for one minute less than 6 hours in your SLURM request so the job is getting killed once that limit is reached. Ask for more time in --time=1-0 (this would be one day).
Log in to answer this question.