#!/bin/bash

# To create biomol.list, you need to first copy the search expressions
# from the NCBI Properties to biomol.raw. This file is edited using
# search and replace to get rid of everything except the actual
# search terms like 'biomol ncrna ncrna'. These should be 1 per line.
# Before running this script, replace all blanks ' ' with a character such
# as underscore. After running the script, replace underscores with blanks
# by search and replace.


for line in `cat biomol.list`
do
    echo $line
    echo '                    '\"$line\"'    '\"biomol $line ' [PROP]'\" >> biomol.choices

done
