Download and install:
Restart after installation.
Windows 10 Superlite sometimes blocks installers due to missing MSI components. Instead:
You should see files like:
Create a batch script run_blastx.bat:
@echo off set BLASTDB=C:\Bioinformatics\db set THREADS=2 set QUERY=%1 set OUTPUT=%2if "%QUERY%"=="" ( echo Usage: run_blastx.bat query.fasta output.txt exit /b )
C:\Bioinformatics\blast\blastx.exe -query %QUERY% -db swissprot -out %OUTPUT% -outfmt 6 -num_threads %THREADS% echo BLASTX complete on Superlite.
Run with:
run_blastx.bat my_genes.fasta my_results.txt
Download and install:
Restart after installation.
Windows 10 Superlite sometimes blocks installers due to missing MSI components. Instead: mpb blastx windows 10 superlite install
You should see files like:
Create a batch script run_blastx.bat:
@echo off set BLASTDB=C:\Bioinformatics\db set THREADS=2 set QUERY=%1 set OUTPUT=%2if "%QUERY%"=="" ( echo Usage: run_blastx.bat query.fasta output.txt exit /b )
C:\Bioinformatics\blast\blastx.exe -query %QUERY% -db swissprot -out %OUTPUT% -outfmt 6 -num_threads %THREADS% echo BLASTX complete on Superlite.Download and install:
Run with:
run_blastx.bat my_genes.fasta my_results.txt