Skip to content

Commit

Permalink
each move has to be own command
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Apr 28, 2016
1 parent 426d803 commit a6cec0b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions db_and_queries/import_dbs/import_fastas.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,11 @@ exit
for /r %%i in (*.fasta *.fna *.fas) do @makeblastdb -in %%i -dbtype "%1" -out "%%~ni" -title "%%~ni"

echo "moving all files to ../db"
move *.nhr *.nin *.nsq *.nal ../db
move *.phr *.pin *.psq *.pal ../db
move *.nhr ../db
move *.nin ../db
move *.nsq ../db
move *.nal ../db
move *.phr ../db
move *.pin ../db
move *.psq ../db
move *.pal ../db

0 comments on commit a6cec0b

Please sign in to comment.