#
# Example nclever script 2
#
# This script shows how to modify some options to suit your search 
# strategy requirements and then illustrates how you might perform 
# a search for all the authors, titles and abstracts for a list of
# authors.
#
# invoke the script on unix systems by typing:
#	
#	nclever -b < sample_script2.txt
#
#
#  		  Tim Littlejohn
#  		       OGMP
#		ogmp@bch.umontreal.ca

#
# STATUS- get the version number and other information about the database
#
Status

#
# Do some searches of the MEDLINE database (this is the default)
#
Database MEDLINE

#
# OPTION - set some options, so that we don't get unwanted fields printed out
#	   and formatting is correct

# Delete fields in the medline report format you don't want such as
# the "genes", "MeSH" and "Substances" firelds.
Option NOMEDGENES NOMEDMESH NOMEDSUBSTANCES

# Turn off multiple mode for selecting multiple hits
Option noMultipleMode

# get all medline references for a list of authors
Author Hasegawa M
Author Adachi J

# Print out all abstracts etc.
Type all

# Start a fresh search
Reset

# Now do another author
Author Felsenstein J

# Print out all abstracts etc.
Type all

# Quit. This is optional since the end-of-file will make nclever exit anyway
Quit
