Step 1: The query genome was annotated, and then the CDSs and IGSs were obtained for subsequent processing.
Step 2: Detection of homologous genes of RIPs in CDSs
Step 3: Detection of oriV features in IGSs
Step 4: Priority-based scoring system for potential oriVs
Based on the detection results, OriV-Finder employs a priority-based scoring system to identify potential oriVs. Each IGS will be assigned a type by this scoring system, and the IGS with high priority will be output as potential oriVs.
Note: Users can click the "Example" button to automatically load an example sequence into the text box.
Warning: The maximum file upload size is 20MB.
Important: Results are stored for only seven days. Users can view and download the relevant results on the results page.
Before you begin, please ensure that Docker is installed.
Download Docker ImageThis Docker image includes the complete OriV-Finder tool and all its dependencies, which can be run on any system with Docker installed without requiring extra environment configuration.
gunzip -c orivfinder-ready.tar.gz | docker load
docker images | grep orivfinder-ready
You should see output similar to the following:
orivfinder-ready latest 74fb4641bdf2 Created: ... Size: 11.6GB
mkdir -p data docker run -it --name orivfinder -v $(pwd)/data:/app/data orivfinder-ready
Now, you can place your input files in the local data
directory. These files will be accessible inside the container at /app/data
.
To run OriV-Finder within the container:
python oriVfinder.py --fasta /app/data/input.fasta --output_dir /app/data/output
For more options, please run python oriVfinder.py -h
to see all parameters.