Project

General

Profile

« Previous | Next » 

Revision 48031

[maven-release-plugin] copy for tag dnet-collector-plugins-1.3.4

View differences:

modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/deploy.info
1
{"type_source": "SVN", "goal": "package -U source:jar", "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-collector-plugins/trunk/", "deploy_repository": "dnet45-snapshots", "version": "4", "mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it", "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots", "name": "dnet-collector-plugins"}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/excel/ReadExcelTest.java
1
package eu.dnetlib.data.collector.plugins.excel;
2

  
3
import eu.dnetlib.data.collector.plugins.HttpCSVCollectorPlugin;
4
import eu.dnetlib.data.collector.rmi.InterfaceDescriptor;
5
import org.junit.Assert;
6
import org.junit.Before;
7
import org.junit.Test;
8

  
9
import java.util.HashMap;
10
import java.util.Iterator;
11
/**
12
 * Created by miriam on 10/05/2017.
13
 */
14
public class ReadExcelTest {
15
	private InterfaceDescriptor descr;
16
	private Read r;
17
	private Object asserNotNul;
18

  
19
	@Before
20
	public void setUp() throws Exception {
21
		descr = new InterfaceDescriptor();
22
		descr.setBaseUrl("https://pf.fwf.ac.at/en/research-in-practice/project-finder.xlsx?&&&search%5Bcall%5D=&search%5Bdecision_board_ids%5D=&search%5Bend_date%5D=&search%5Binstitute_name%5D=&search%5Blead_firstname%5D=&search%5Blead_lastname%5D=&search%5Bper_page%5D=10&search%5Bproject_number%5D=&search%5Bproject_title%5D=&search%5Bscience_discipline_id%5D=&search%5Bstart_date%5D=&search%5Bstatus_id%5D=&search%5Bwhat%5D=&action=index&controller=projects&locale=en&per_page=10" );
23
		HashMap<String, String> params = new HashMap<String, String>();
24

  
25
		params.put("argument", "{\"replace\":{\"header\":[{\"from\":\"&\",\"to\":\"and\"}],\"body\":[{\"from\":\"\\n\",\"to\":\" \"}]}," +
26
				"\"replace_currency\":[{\"from\":\"$\",\"to\":\"€\"}],\"col_currency\":10}");
27
		params.put("header_row","4");
28
		params.put("tmp_file","//tmp//fwf.xslx");
29
		params.put("remove_empty_lines","yes");
30
		params.put("remove_lines_with_id"," – ");
31
		params.put("col_id","1");
32
		params.put("remove_tmp_file","no");
33
		params.put("sheet_number","0");
34
		params.put("file_to_save","/tmp/project_search.2017.05.10.csv");
35
		params.put("separator", ",");
36
		params.put("quote","\"");
37
		descr.setParams(params);
38

  
39
		r = new Read(descr);
40
		r.setCollector(new HttpCSVCollectorPlugin());
41
	}
42

  
43
	@Test
44
	public void readExcelFromUrl()throws Exception{
45
		Iterator<String> it = r.parseFile().iterator();
46

  
47
		while(it.hasNext()){
48
			Assert.assertNotNull(it.next());
49
			//System.out.println(it.next());
50
		}
51

  
52

  
53
	}
54
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/datasets/DatasetsByProjectIteratorTest.java
1
package eu.dnetlib.data.collector.plugins.datasets;
2

  
3
import java.net.URL;
4
import java.util.HashMap;
5

  
6
import org.junit.Assert;
7
import org.junit.Before;
8
import org.junit.Test;
9

  
10
import eu.dnetlib.data.collector.rmi.CollectorServiceException;
11
import eu.dnetlib.data.collector.rmi.InterfaceDescriptor;
12

  
13
public class DatasetsByProjectIteratorTest {
14

  
15
	@Before
16
	public void setUp() throws Exception {}
17

  
18
	@Test
19
	public void test() throws CollectorServiceException {
20
		URL resource = DatasetsByProjectIteratorTest.class.getResource("pangaea-eu-projects_Openaire.csv");
21
		InterfaceDescriptor descr = new InterfaceDescriptor();
22
		HashMap<String, String> params = new HashMap<String, String>();
23
		descr.setBaseUrl(resource.toString());
24
		descr.setParams(params);
25
		DatasetsByProjectPlugin plugin = new DatasetsByProjectPlugin();
26
		Iterable<String> result = plugin.collect(descr, "", "");
27

  
28
		int i = 0;
29
		for (String s : result) {
30
			Assert.assertNotNull(s);
31
			System.out.println(s);
32
			break;
33
			// System.out.println("Parsed " + i++);
34
		}
35

  
36
	}
37

  
38
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/datasets/DatasetsByJournalIteratorTest.java
1
package eu.dnetlib.data.collector.plugins.datasets;
2

  
3
import java.util.List;
4

  
5
import org.junit.Assert;
6
import org.junit.Before;
7
import org.junit.Test;
8

  
9
import com.google.common.collect.Lists;
10

  
11
import eu.dnetlib.data.collector.rmi.CollectorServiceException;
12

  
13
public class DatasetsByJournalIteratorTest {
14

  
15
	@Before
16
	public void setUp() throws Exception {}
17

  
18
	@Test
19
	public void test() throws CollectorServiceException {
20
		List<PangaeaJournalInfo> inputList = Lists.newArrayList();
21

  
22
		PangaeaJournalInfo jp = new PangaeaJournalInfo();
23
		jp.setDatasourceId("dsId1");
24
		jp.setJournalId("journal10825");
25
		jp.setJournalName("journal Name");
26
		inputList.add(jp);
27

  
28
		DatasetsByJournalIterator iterator = new DatasetsByJournalIterator(inputList.iterator());
29

  
30
		int i = 0;
31
		for (String s : iterator) {
32
			Assert.assertNotNull(s);
33
			if (i++ == 100) {
34
				i--;
35
				break;
36
			}
37
		}
38
		Assert.assertEquals(i, 100);
39

  
40
	}
41

  
42
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/projects/grist/GristProjectsIterableTest.java
1
package eu.dnetlib.data.collector.plugins.projects.grist;
2

  
3
import java.io.File;
4
import java.io.IOException;
5
import java.util.Iterator;
6
import java.util.List;
7
import java.util.Set;
8

  
9
import com.google.common.collect.Lists;
10
import com.google.common.collect.Sets;
11
import org.apache.commons.io.FileUtils;
12
import org.apache.commons.io.IOUtils;
13
import org.dom4j.Document;
14
import org.dom4j.DocumentException;
15
import org.dom4j.io.SAXReader;
16
import org.junit.Before;
17
import org.junit.Ignore;
18
import org.junit.Test;
19

  
20
import static org.junit.Assert.assertNotNull;
21
import static org.junit.Assert.assertTrue;
22

  
23
/**
24
 * GristProjectsIterable Tester.
25
 *
26
 * @author alessia
27
 * @version 1.0
28
 * @since <pre>Apr 22, 2016</pre>
29
 */
30
@Ignore
31
public class GristProjectsIterableTest {
32

  
33
	private String baseUrl = "http://www.ebi.ac.uk/europepmc/GristAPI/rest/get/query=ga:%22Wellcome%20Trust%22&resultType=core";
34
	private GristProjectsIterable iterable;
35
	private Iterator<String> it;
36
	private SAXReader reader;
37

  
38
	@Before
39
	public void before() throws Exception {
40
		iterable = new GristProjectsIterable(baseUrl);
41
		it = iterable.iterator();
42
		reader = new SAXReader();
43
	}
44

  
45
	/**
46
	 * Method: hasNext()
47
	 */
48
	@Test
49
	public void testHasNext() throws Exception {
50
		assertTrue(it.hasNext());
51
	}
52

  
53
	/**
54
	 * Method: next()
55
	 */
56
	@Test
57
	public void testNext() throws Exception {
58
		assertNotNull(it.next());
59
	}
60

  
61
	/**
62
	 * Method: remove()
63
	 */
64
	@Test(expected = UnsupportedOperationException.class)
65
	public void testRemove() throws Exception {
66
		it.remove();
67
	}
68

  
69
	@Test
70
	public void iterateToNextPage() {
71
		for (int maxInPage = 25; maxInPage > 0; maxInPage--) {
72
			it.next();
73
		}
74
		if (it.hasNext()) {
75
			System.out.println(it.next());
76
		}
77
	}
78

  
79
	@Test
80
	public void checkProjectIdentifiers() throws DocumentException, IOException {
81
		List<String> identifiers = Lists.newArrayList();
82
		List<String> duplicates = Lists.newArrayList();
83
		Iterator<String> it2 = iterable.iterator();
84
		while (it2.hasNext()) {
85
			String id = parseId(it2.next());
86
			if (identifiers.contains(id)) {
87
				System.out.println("Found duplicate identifier: " + id);
88
				duplicates.add(id);
89
			}
90
			identifiers.add(id);
91
		}
92

  
93
		int listSize = identifiers.size();
94
		System.out.println("Total grant ids " + listSize);
95
		Set<String> set = Sets.newHashSet(identifiers);
96
		Set<String> dupSet = Sets.newHashSet(duplicates);
97
		System.out.println("Unique grant ids: " + set.size());
98
		System.out.println("Duplicate grant ids: " + dupSet.size());
99
		System.out.println();
100
		serializeSetOnFile(dupSet);
101
	}
102

  
103
	private String parseId(String record) throws DocumentException {
104
		Document doc = reader.read(IOUtils.toInputStream(record));
105
		return doc.selectSingleNode("//Grant/Id").getText();
106
	}
107

  
108
	private void serializeSetOnFile(Set<String> s) throws IOException {
109
		File tmpDir = FileUtils.getTempDirectory();
110
		System.out.println("Saving list in " + tmpDir.getAbsolutePath());
111
		FileUtils.writeLines(FileUtils.getFile(tmpDir, "WT_duplicates.txt"), s);
112
	}
113

  
114
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/projects/gtr2/Gtr2Test.java
1
package eu.dnetlib.data.collector.plugins.projects.gtr2;
2

  
3
import java.util.Iterator;
4

  
5
import com.ximpleware.VTDGen;
6
import eu.dnetlib.miscutils.functional.xml.TryIndentXmlString;
7
import org.junit.Before;
8
import org.junit.Ignore;
9
import org.junit.Test;
10

  
11
import static org.junit.Assert.assertEquals;
12
import static org.junit.Assert.assertNotNull;
13

  
14
@Ignore
15
public class Gtr2Test {
16

  
17
	private String baseURL = "http://gtr.rcuk.ac.uk/gtr/api";
18
	private Gtr2Helper helper;
19
	private Gtr2ProjectsIterable it;
20

  
21
	@Before
22
	public void prepare() {
23
		helper = new Gtr2Helper();
24
	}
25

  
26
	@Test
27
	public void testOne() throws Exception {
28
		System.out.println("one project");
29
		VTDGen vg_tmp = new VTDGen();
30
		vg_tmp.parseHttpUrl("http://gtr.rcuk.ac.uk/gtr/api/projects/E178742B-571B-498F-8402-122F17C47546", false);
31
		String s = helper.processProject(vg_tmp.getNav(), "xmlns:ns=\"http:///afgshs\"");
32
		System.out.println(s);
33
	}
34

  
35
	@Test
36
	public void testPaging() throws Exception {
37
		it = new Gtr2ProjectsIterable(baseURL, null, 2, 3);
38
		TryIndentXmlString indenter = new TryIndentXmlString();
39
		Iterator<String> iterator = it.iterator();
40
		while (iterator.hasNext()) {
41
			Thread.sleep(300);
42
			String res = iterator.next();
43
			assertNotNull(res);
44
			indenter.evaluate(res);
45
		}
46
	}
47

  
48
	@Test
49
	public void testOnePage() throws Exception {
50
		it = new Gtr2ProjectsIterable(baseURL, null, 12, 12);
51
		int count = iterateAndCount(it.iterator());
52
		assertEquals(20, count);
53
	}
54

  
55
	@Test
56
	public void testIncrementalHarvestingNoRecords() throws Exception {
57
		System.out.println("incremental Harvesting");
58
		it = new Gtr2ProjectsIterable(baseURL, "2050-12-12", 11, 13);
59
		int count = iterateAndCount(it.iterator());
60
		assertEquals(0, count);
61
	}
62

  
63
	@Test
64
	public void testIncrementalHarvesting() throws Exception {
65
		System.out.println("incremental Harvesting");
66
		it = new Gtr2ProjectsIterable(baseURL, "2016-11-30", 11, 11);
67
		int count = iterateAndCount(it.iterator());
68
		assertEquals(20, count);
69
	}
70

  
71
	@Test
72
	public void testMultithreading() throws Exception {
73
		System.out.println("testing new multithreading configuration");
74
		it = new Gtr2ProjectsIterable(baseURL, null);
75
		TryIndentXmlString indenter = new TryIndentXmlString();
76
		it.setEndAtPage(3);
77
		Iterator<String> iterator = it.iterator();
78
		while (iterator.hasNext()) {
79
			String res = iterator.next();
80
		assertNotNull(res);
81
		//	System.out.println(res);
82
//			Scanner keyboard = new Scanner(System.in);
83
//			System.out.println("press enter for next record");
84
//			keyboard.nextLine();
85

  
86
		}
87
	}
88

  
89
	private int iterateAndCount(final Iterator<String> iterator) throws Exception{
90
		int i = 0;
91
		while (iterator.hasNext()) {
92
			assertNotNull(iterator.next());
93
			i++;
94
		}
95
		System.out.println("Got "+i+" projects");
96
		return i;
97
	}
98
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/projects/gtr2/VTDXMLTest.java
1
package eu.dnetlib.data.collector.plugins.projects.gtr2;
2

  
3
import java.io.BufferedWriter;
4
import java.io.ByteArrayOutputStream;
5
import java.io.FileWriter;
6
import java.io.PrintWriter;
7

  
8
import com.ximpleware.AutoPilot;
9
import com.ximpleware.VTDGen;
10
import com.ximpleware.VTDNav;
11
import org.apache.commons.lang.StringUtils;
12
import org.junit.Ignore;
13
import org.junit.Test;
14
@Ignore
15
public class VTDXMLTest {
16

  
17
	private VTDGen vg;
18
	private VTDNav vn;
19
	private AutoPilot ap;
20

  
21
	private VTDGen vg_tmp;
22
	private VTDNav vn_tmp;
23
	private AutoPilot ap_tmp;
24

  
25
	private PrintWriter writer;
26
	//TODO: use resource and not full path
27
	private String inputFilePath =
28
			"/Users/alessia/workspace/dnet/dnet-collector-plugins/src/test/resources/eu.dnetlib.data.collector.plugins.projects.gtr2/projects.xml";
29

  
30
	@Test
31
	public void test() throws Exception {
32
		vg = new VTDGen();
33
		vg.parseFile(inputFilePath, false);
34
		vn = vg.getNav();
35
		ap = new AutoPilot(vn);
36
		String ns = "";
37
		ap.selectXPath(".//projects");
38
		ap.evalXPath();
39
		ns += "xmlns:ns1=\"" + vn.toNormalizedString(vn.getAttrVal("ns1")) + "\" ";
40
		ns += "xmlns:ns2=\"" + vn.toNormalizedString(vn.getAttrVal("ns2")) + "\" ";
41
		ns += "xmlns:ns3=\"" + vn.toNormalizedString(vn.getAttrVal("ns3")) + "\" ";
42
		ns += "xmlns:ns4=\"" + vn.toNormalizedString(vn.getAttrVal("ns4")) + "\" ";
43
		ns += "xmlns:ns5=\"" + vn.toNormalizedString(vn.getAttrVal("ns5")) + "\" ";
44
		ns += "xmlns:ns6=\"" + vn.toNormalizedString(vn.getAttrVal("ns6")) + "\" ";
45

  
46
		ap.selectXPath("//project");
47
		int res = -1;
48
		ByteArrayOutputStream b = new ByteArrayOutputStream();
49
		int i = 0;
50
		while ((res = ap.evalXPath()) != -1) {
51
			writer = new PrintWriter(new BufferedWriter(new FileWriter("projectPackage_"+(++i)+".xml")));
52
			System.out.println(res);
53
			writer.println("<doc " + ns + ">");
54
			writeFragment(vn);
55
			VTDNav clone = vn.cloneNav();
56
			AutoPilot ap2 = new AutoPilot(clone);
57
			ap2.selectXPath(".//link[@rel='FUND']");
58
			vg_tmp = new VTDGen();
59

  
60
			while (ap2.evalXPath() != -1) {
61
				//String fund = clone.toNormalizedString(clone.getAttrVal("href"));
62
				evalXpath(clone.toNormalizedString(clone.getAttrVal("href")), ".//link[@rel='FUNDER']");
63
				String funder = vn_tmp.toNormalizedString(vn_tmp.getAttrVal("href"));
64
				vn_tmp.toElement(VTDNav.ROOT);
65
				writeFragment(vn_tmp);
66
				writeNewTagAndInfo(funder, "//name", "<funder> <name>", "</name></funder>", null);
67
			}
68
			ap2.resetXPath();
69
			ap2.selectXPath(".//link[@rel='LEAD_ORG']");
70
			while (ap2.evalXPath() != -1) {
71
				writeNewTagAndInfo(clone.toNormalizedString(clone.getAttrVal("href")), "//name", "<lead-org><name>", "</name>", null);
72
				writeNewTagAndInfo(clone.toNormalizedString(clone.getAttrVal("href")), ".", "<id>", "</id></lead-org>", "id");
73
			}
74
			ap2.resetXPath();
75
			ap2.selectXPath(".//link[@rel='PP_ORG']");
76
			while (ap2.evalXPath() != -1) {
77
				writeNewTagAndInfo(clone.toNormalizedString(clone.getAttrVal("href")), "//name", "<pp-org><name>", "</name></pp-org>", null);
78
				writeNewTagAndInfo(clone.toNormalizedString(clone.getAttrVal("href")), ".", "<id>", "</id></lead-org>", "id");
79
			}
80
			ap2.resetXPath();
81

  
82
			ap2.selectXPath(".//link[@rel='PI_PER']");
83
			while (ap2.evalXPath() != -1) {
84
				setNavigator(clone.toNormalizedString(clone.getAttrVal("href")));
85
				vn_tmp.toElement(VTDNav.ROOT);
86
				writeFragment(vn_tmp);
87
			}
88
			writer.println("</doc>");
89
			writer.close();
90
		}
91

  
92
	}
93

  
94
	private void setNavigator(String httpUrl) {
95
		vg_tmp.clear();
96
		vg_tmp.parseHttpUrl(httpUrl, false);
97
		vn_tmp = vg_tmp.getNav();
98
	}
99

  
100
	private int evalXpath(String httpUrl, String xPath) throws Exception {
101
		setNavigator(httpUrl);
102
		ap_tmp = new AutoPilot(vn_tmp);
103
		ap_tmp.selectXPath(xPath);
104
		return ap_tmp.evalXPath();
105
	}
106

  
107
	private void writeFragment(VTDNav nav) throws Exception {
108
		ByteArrayOutputStream b = new ByteArrayOutputStream();
109
		nav.dumpFragment(b);
110
		writer.println(b);
111
		b.reset();
112
	}
113

  
114
	private void writeNewTagAndInfo(String search, String xPath, String xmlOpenTag, String xmlCloseTag, String attrName) throws Exception {
115
		int nav_res = evalXpath(search, xPath);
116
		if (nav_res != -1) {
117
			writer.println(xmlOpenTag);
118
			if(StringUtils.isNotBlank(attrName)) writer.println(vn_tmp.toNormalizedString(vn_tmp.getAttrVal(attrName)));
119
			else
120
				writer.println(vn_tmp.toNormalizedString(vn_tmp.getText()));
121
			writer.println(xmlCloseTag);
122
		}
123
	}
124

  
125
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/datasources/Re3DataRepositoriesIteratorTest.java
1
package eu.dnetlib.data.collector.plugins.datasources;
2

  
3
import java.io.File;
4
import java.io.FileOutputStream;
5
import java.io.IOException;
6
import java.net.URL;
7
import java.util.Iterator;
8

  
9
import org.apache.commons.io.FileUtils;
10
import org.apache.commons.io.IOUtils;
11
import org.apache.commons.logging.Log;
12
import org.apache.commons.logging.LogFactory;
13
import org.junit.Before;
14
import org.junit.Ignore;
15
import org.junit.Test;
16

  
17
import static org.junit.Assert.*;
18

  
19
@Ignore
20
public class Re3DataRepositoriesIteratorTest {
21

  
22
	private static final Log log = LogFactory.getLog(Re3DataRepositoriesIteratorTest.class);
23

  
24
	private static final String TMP_DIR = "/tmp/re3data/";
25
	int countRepos = 0;
26
	int expectedRepos = 1772;
27
	private Re3DataRepositoriesIterator re3dataIterator;
28
	private String baseURL = "http://service.re3data.org";
29
	private String repoListURL = baseURL + "/api/v1/repositories";
30

  
31
	@Before
32
	public void setUp() throws Exception {
33
		String input = IOUtils.toString(new URL(repoListURL));
34
		re3dataIterator = new Re3DataRepositoriesIterator(IOUtils.toInputStream(input, "UTF-8"), baseURL);
35

  
36
		File tmpDir = new File(TMP_DIR);
37
		if (tmpDir.exists()) {
38
			log.info("deleting directory: " + tmpDir.getAbsolutePath());
39
			FileUtils.forceDelete(tmpDir);
40
		}
41
		log.info("creating directory: " + tmpDir.getAbsolutePath());
42
		FileUtils.forceMkdir(tmpDir);
43
	}
44

  
45
	@Test
46
	public void testHasNext() {
47
		assertTrue(re3dataIterator.hasNext());
48
	}
49

  
50
	@Test
51
	public void testNext() {
52
		String repo = null;
53
		if (re3dataIterator.hasNext()) {
54
			repo = re3dataIterator.next();
55
		}
56
		assertNotNull(repo);
57
	}
58

  
59
	@Test(expected = UnsupportedOperationException.class)
60
	public void testRemove() {
61
		re3dataIterator.remove();
62
	}
63

  
64
	@Test
65
	public void testIterator() throws IOException {
66

  
67
		for (String repo : re3dataIterator) {
68
			countRepos++;
69
			assertNotNull(repo);
70
			FileOutputStream st = new FileOutputStream(TMP_DIR + countRepos + ".xml");
71
			IOUtils.write(repo, st);
72
			IOUtils.closeQuietly(st);
73
		}
74
		assertEquals(expectedRepos, countRepos);
75
	}
76

  
77
	@Test
78
	public void testBadIterator() throws IOException {
79

  
80
		final Iterator<String> iter = re3dataIterator.iterator();
81

  
82
		while (iter.hasNext()) {
83

  
84
			iter.hasNext();
85
			iter.next();
86

  
87
			countRepos++;
88
		}
89
		assertEquals(expectedRepos, countRepos);
90
	}
91

  
92
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/java/eu/dnetlib/data/collector/plugins/opentrial/OpentrialTest.java
1
package eu.dnetlib.data.collector.plugins.opentrial;
2

  
3
/**
4
 * Created by miriam on 07/03/2017.
5
 */
6

  
7
import eu.dnetlib.data.collector.plugins.opentrial.OpenTrialIterator;
8
import org.junit.Test;
9

  
10
import java.io.BufferedWriter;
11
import java.io.FileWriter;
12
import java.io.PrintWriter;
13
import java.util.Iterator;
14

  
15

  
16
public class OpentrialTest {
17

  
18
	@Test
19
	public void importOpentrial() throws Exception {
20
		PrintWriter writer = new PrintWriter(new BufferedWriter(new FileWriter("opentrials.xml")));
21
		OpenTrialIterator trial = new OpenTrialIterator("https://api.opentrials.net/v1/search?",null,null);
22
		Iterator<String> iterator = trial.iterator();
23
		int parse_number = 0;
24
		while(iterator.hasNext() && parse_number < 30){
25
			writer.println("<doc>" + iterator.next() + "</doc>");
26
			parse_number++;
27
		}
28
		writer.close();
29

  
30
	}
31

  
32
}
modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.4/src/test/resources/eu/dnetlib/data/collector/plugins/datasets/pangaea-journals.csv
1
1|A + U-Architecture and Urbanism| |0389-9160|Monthly| |A & U PUBL CO LTD
2
2|A Rocha Observatory Report| | |Annual| |AROCHA TRUST
3
3|AAA-Arbeiten aus Anglistik und Amerikanistik| |0171-5410|Semiannual| |GUNTER NARR VERLAG
4
4|AAAAI Annual Meeting Abstracts of Scientific Papers| | |Annual| |MOSBY-ELSEVIER
5
5|AAAS Annual Meeting and Science Innovation Exposition| | |Annual| |AMER ASSOC ADVANCEMENT SCIENCE
6
6|AACL Bioflux| |1844-8143|Quarterly| |BIOFLUX SRL
7
7|AAPG Bulletin|Geosciences / Petroleum|0149-1423|Monthly| |AMER ASSOC PETROLEUM GEOLOGIST
8
8|AAPS Journal|Pharmacology & Toxicology /|1550-7416|Quarterly| |SPRINGER
9
9|AAPS PharmSciTech|Pharmacology & Toxicology /|1530-9932|Quarterly| |SPRINGER
10
10|Aardkundige Mededelingen| |0250-7803|Irregular| |LEUVEN UNIV PRESS
11
11|AASP Contributions Series| |0160-8843|Irregular| |AMER ASSOC STRATIGRAPHIC PALYNOLOGISTS FOUNDATION
12
12|AATCC Review|Materials Science|1532-8813|Monthly| |AMER ASSOC TEXTILE CHEMISTS COLORISTS
13
13|ABA Bank Marketing| |1539-7890|Monthly| |BANK MARKETING ASSOC
14
14|Abacus-A Journal of Accounting Finance and Business Studies|Economics & Business / Accounting; Finance|0001-3072|Tri-annual| |WILEY-BLACKWELL PUBLISHING
15
15|ABC Taxa| |1784-1291|Irregular| |Royal Belgian Institute of Natural Sciences
16
16|Abdominal Imaging|Clinical Medicine / Abdomen; Diagnostic imaging; Gastrointestinal system; Urinary organs; Diagnostic Imaging; Gastrointestinal Diseases; Urologic Diseases; Tractus gastro-intestinal; Gastroentérologie; Maagdarmstelsel; Radiodiagnostiek; Echografie|0942-8925|Bimonthly| |SPRINGER
17
17|Abhandlung Naturhistorische Gesellschaft Nuernberg| |0077-6149|Irregular| |NATURHISTORISCHE GESELLSCHAFT NUERNBERG E V
18
18|Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg|Mathematics / Mathematics|0025-5858|Annual| |SPRINGER HEIDELBERG
19
19|Abhandlungen aus dem Westfaelischen Museum fuer Naturkunde| |0175-3495|Quarterly| |WESTFAELISCHES MUSEUM NATURKUNDE
20
20|Abhandlungen der Delattinia| |0948-6526|Annual| |EIGENVERLAG DELATTINIA
21
21|Abhandlungen der Geologischen Bundesanstalt-Vienna| |0378-0864|Irregular| |GEOLOGISCHE BUNDESANSTALT
22
22|Abhandlungen der Senckenberg Gesellschaft fur Naturforschung| |1868-0356|Irregular| |E. SCHWEIZERBART SCIENCE PUBLISHERS
23
23|Abhandlungen der Zoologisch-Botanischen Gesellschaft in Oesterreich| |0084-5639|Irregular| |ZOOLOGISCH-BOTANISCHE GESELLSCHAFT IN OESTERREICH
24
24|Abhandlungen des Naturwissenschaftlichen Vereins zu Bremen|natural science|0340-3718|Irregular|http://www.nwv-bremen.de/publik/|NATURWISSENSCHAFTLICHER VEREIN ZU BREMEN
25
25|Abhandlungen und Berichte aus dem Museum Heineanum| |0947-1057|Irregular| |MUSEUM HEINEANUM
26
26|Abhandlungen und Berichte des Museums der Natur Gotha| |0138-1857|Irregular| |MUSEUM NATUR GOTHA
27
27|Abhandlungen und Berichte des Naturkundemuseums Goerlitz| |0373-7586|Semiannual| |STAATLICHES MUSEUM NATURKUNDE GOERLITZ
28
28|Abhandlungen und Berichte fuer Naturkunde| |0945-7658|Annual| |MUSEUM NATURKUNDE
29
29|Abstract and Applied Analysis|Mathematics / Mathematical analysis|1085-3375|Monthly| |HINDAWI PUBLISHING CORPORATION
30
30|Abstracts of Papers of the American Chemical Society| |0065-7727|Semiannual| |AMER CHEMICAL SOC
31
31|Abstracts of the General Meeting of the American Society for Microbiology| |1060-2011|Annual| |AMER SOC MICROBIOLOGY
32
32|Abstracts of the Interscience Conference on Antimicrobial Agents and Chemotherapy| |0733-6373|Annual| |AMER SOC MICROBIOLOGY
33
33|Academia Nacional de Ciencias-Cordoba Argentina-Miscelanea| |0325-3406|Irregular| |ACAD NACIONAL CIENCIAS
34
34|Academia-Revista Latinoamericana de Administracion|Economics & Business|1012-8255|Semiannual| |CONSEJO LATINOAMERICANO ESCUELAS ADM-CLADEA
35
35|Academic Emergency Medicine|Clinical Medicine / Emergency medicine; Emergency Medicine; Geneeskunde; Spoedgevallen; Ongevallen; Médecine d'urgence|1069-6563|Monthly| |WILEY-BLACKWELL PUBLISHING
36
36|Academic Journal of Entomology| |1995-8994|Semiannual| |INT DIGITAL ORGANIZATION SCIENTIFIC INFORMATION-IDOSI
37
37|Academic Medicine|Clinical Medicine / Medical education; Medicine; Education, Medical; Geneeskunde; Onderwijs; Médecine; Enseignement médical|1040-2446|Monthly| |LIPPINCOTT WILLIAMS & WILKINS
38
38|Academic Pediatrics|Clinical Medicine /|1876-2859|Bimonthly| |ELSEVIER SCIENCE INC
39
39|Academic Psychiatry|Psychiatry/Psychology / Psychiatry|1042-9670|Quarterly| |AMER PSYCHIATRIC PUBLISHING
40
40|Academic Radiology|Clinical Medicine / Radiography; Radiology|1076-6332|Monthly| |ELSEVIER SCIENCE INC
41
41|Academie Royale des Sciences D Outre-Mer Bulletin des Seances| |0001-4176|Quarterly| |ACAD ROYAL SCI
42
42|Academie Royale des Sciences D Outre-Mer Memoires Classe des Sciences Naturelles et Medicales| |0379-1920|Quarterly| |ACAD ROYAL SCI
43
43|Academie Serbe des Sciences et des Arts-Bulletin Classe des Sciences Mathematiques et Naturelles| |0352-5740|Semiannual| |SRPSKA AKAD NAUKA I UMETNOSTI
44
44|Academy of Management Annals|Economics & Business|1941-6067|Annual| |ROUTLEDGE JOURNALS
45
45|Academy of Management Journal|Economics & Business / Industrial management|0001-4273|Bimonthly| |ACAD MANAGEMENT
46
46|Academy of Management Learning & Education|Economics & Business|1537-260X|Quarterly| |ACAD MANAGEMENT
47
47|Academy of Management Perspectives|Economics & Business|1558-9080|Quarterly| |ACAD MANAGEMENT
48
48|Academy of Management Review|Economics & Business / Management; Gestion|0363-7425|Quarterly| |ACAD MANAGEMENT
49
49|Acadiensis| |0044-5851|Semiannual| |UNIV NEW BRUNSWICK
50
50|Acari Bibliographia Acarologica| |1618-8977|Tri-annual| |STAATLICHES MUSEUM NATURKUNDE GOERLITZ
51
51|Acarina| |0132-8077|Semiannual| |KMK SCIENTIFIC PRESS LTD
52
52|Acarologia|Plant & Animal Science /|0044-586X|Annual| |ACAROLOGIA-UNIVERSITE PAUL VALERY
53
53|Accident Analysis and Prevention|Social Sciences, general / Accidents; Accidents, Traffic|0001-4575|Bimonthly| |PERGAMON-ELSEVIER SCIENCE LTD
54
54|Accountability in Research-Policies and Quality Assurance|Research; Ethics; Program Evaluation / Research; Ethics; Program Evaluation|0898-9621|Bimonthly| |TAYLOR & FRANCIS LTD
55
55|Accounting and Business Research|Economics & Business|0001-4788|Quarterly| |INST CHARTERED ACCOUNTANTS ENGLAND & WALES
56
56|Accounting and Finance|Economics & Business / Accounting; Finance / Accounting; Finance|0810-5391|Quarterly| |WILEY-BLACKWELL PUBLISHING
57
57|Accounting Horizons|Economics & Business / Accounting|0888-7993|Quarterly| |AMER ACCOUNTING ASSOC
58
58|Accounting Organizations and Society|Economics & Business / Accounting; Social accounting|0361-3682|Bimonthly| |PERGAMON-ELSEVIER SCIENCE LTD
59
59|Accounting Review|Economics & Business / Accounting; Comptabilité; ACCOUNTING|0001-4826|Quarterly| |AMER ACCOUNTING ASSOC
60
60|Accounts of Chemical Research|Chemistry / Chemistry; Research; Chimie; Chemie|0001-4842|Monthly| |AMER CHEMICAL SOC
61
61|Accreditation and Quality Assurance|Chemistry /|0949-1775|Monthly| |SPRINGER
62
62|ACI Materials Journal|Materials Science|0889-325X|Bimonthly| |AMER CONCRETE INST
63
63|ACI Structural Journal|Engineering|0889-3241|Bimonthly| |AMER CONCRETE INST
64
64|ACM Computing Surveys|Computer Science / Electronic digital computers; Ordinateurs; Computers; Dataprocessing|0360-0300|Quarterly| |ASSOC COMPUTING MACHINERY
65
65|ACM Journal on Emerging Technologies in Computing Systems|Computer Science / Computer systems; Informatique; Ordinateurs|1550-4832|Quarterly| |ASSOC COMPUTING MACHINERY
66
66|ACM SIGPLAN Notices|Computer Science / Programming languages (Electronic computers)|0362-1340|Monthly| |ASSOC COMPUTING MACHINERY
67
67|ACM Transactions on Algorithms|Computer Science / Computer programming; Computer algorithms|1549-6325|Quarterly| |ASSOC COMPUTING MACHINERY
68
68|ACM Transactions on Applied Perception|Computer Science / Human-computer interaction; Computer graphics; Psychology; Infographie; Psychologie; Interaction homme-machine (Informatique); Computer Graphics|1544-3558|Quarterly| |ASSOC COMPUTING MACHINERY
69
69|ACM Transactions on Architecture and Code Optimization|Computer Science / Computer architecture; Compiling (Electronic computers)|1544-3566|Quarterly| |ASSOC COMPUTING MACHINERY
70
70|ACM Transactions on Autonomous and Adaptive Systems|Computer Science / Intelligent agents (Computer software); Computers; Computer science|1556-4665|Quarterly| |ASSOC COMPUTING MACHINERY
71
71|ACM Transactions on Computational Logic|Computer Science / Computer logic; Logic, Symbolic and mathematical; Computer science; Logique informatique; Logique symbolique et mathématique; Informatique|1529-3785|Quarterly| |ASSOC COMPUTING MACHINERY
72
72|ACM Transactions on Computer Systems|Computer Science / System design; Computer architecture; Operating systems (Computers); Computersystemen; Ordinateurs|0734-2071|Quarterly| |ASSOC COMPUTING MACHINERY
73
73|ACM Transactions on Computer-Human Interaction|Computer Science /|1073-0516|Quarterly| |ASSOC COMPUTING MACHINERY
74
74|ACM Transactions on Database Systems|Computer Science / Database management; Bases de données|0362-5915|Quarterly| |ASSOC COMPUTING MACHINERY
75
75|ACM Transactions on Design Automation of Electronic Systems|Computer Science / Electronic systems; Electronic circuit design; Computer-aided design; Integrated circuits; Circuits électroniques; Conception assistée par ordinateur|1084-4309|Quarterly| |ASSOC COMPUTING MACHINERY
76
76|ACM Transactions on Embedded Computing Systems|Computer Science / Embedded computer systems|1539-9087|Quarterly| |ASSOC COMPUTING MACHINERY
77
77|ACM Transactions on Graphics|Computer Science / Computer graphics; Infographie; Grafische voorstellingen; Computermethoden|0730-0301|Quarterly| |ASSOC COMPUTING MACHINERY
78
78|ACM Transactions on Information and System Security|Computer Science / Data protection; Computer security; Data encryption (Computer science); Information storage and retrieval systems|1094-9224|Quarterly| |ASSOC COMPUTING MACHINERY
79
79|ACM Transactions on Information Systems|Computer Science / Electronic data processing; Information storage and retrieval systems; Information retrieval; Informatique; Systèmes d'information; Recherche de l'information; Informatiesystemen|1046-8188|Quarterly| |ASSOC COMPUTING MACHINERY
80
80|ACM Transactions on Internet Technology|Computer Science / Internet|1533-5399|Quarterly| |ASSOC COMPUTING MACHINERY
81
81|ACM Transactions on Mathematical Software|Computer Science / Computer programming; Mathematics; Programmation (Informatique); Mathématiques|0098-3500|Quarterly| |ASSOC COMPUTING MACHINERY
82
82|ACM Transactions on Modeling and Computer Simulation|Computer Science / Computer simulation; Mathematical models; Simulation par ordinateur; Modèles mathématiques|1049-3301|Quarterly| |ASSOC COMPUTING MACHINERY
83
83|ACM Transactions on Multimedia Computing Communications and Applications|Multimedia systems; Multimedia communications|1551-6857|Quarterly| |ASSOC COMPUTING MACHINERY
84
84|ACM Transactions on Programming Languages and Systems|Computer Science / Programming languages (Electronic computers); Computer programming; Langages de programmation; Programmation (Informatique)|0164-0925|Bimonthly| |ASSOC COMPUTING MACHINERY
85
85|ACM Transactions on Sensor Networks|Engineering / Sensor networks|1550-4859|Quarterly| |ASSOC COMPUTING MACHINERY
86
86|ACM Transactions on Software Engineering and Methodology|Computer Science / Software engineering; Génie logiciel|1049-331X|Quarterly| |ASSOC COMPUTING MACHINERY
87
87|ACM Transactions on the Web|Computer Science / World Wide Web|1559-1131|Quarterly| |ASSOC COMPUTING MACHINERY
88
88|Acoustical Physics|Physics / Sound|1063-7710|Bimonthly| |MAIK NAUKA/INTERPERIODICA/SPRINGER
89
89|Acoustics Australia|Physics|0814-6039|Tri-annual| |AUSTRALIAN ACOUSTICAL SOC
90
90|Acrocephalus| |0351-2851|Bimonthly| |DOPPS-BIRDLIFE SLOVENIA
91
91|Across Languages and Cultures|Social Sciences, general / Translating and interpreting; Language and languages|1585-1923|Semiannual| |AKADEMIAI KIADO RT
92
92|ACS Applied Materials & Interfaces|Materials Science /|1944-8244|Monthly| |AMER CHEMICAL SOC
93
93|ACS Chemical Biology|Chemistry / Biochemistry|1554-8929|Monthly| |AMER CHEMICAL SOC
94
94|ACS Chemical Neuroscience| |1948-7193|Monthly| |AMER CHEMICAL SOC
95
95|ACS Medicinal Chemistry Letters| |1948-5875|Monthly| |AMER CHEMICAL SOC
96
96|ACS Nano|Chemistry / Nanoscience; Nanotechnology|1936-0851|Monthly| |AMER CHEMICAL SOC
97
97|ACS-Agriculturae Conspectus Scientificus| |1331-7768|Quarterly| |AGRONOMSKI FAKULTET
98
98|ACSMS Health & Fitness Journal|Clinical Medicine / Exercise; Physical fitness; Health; Health Behavior; Physical Fitness|1091-5397|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
99
99|Acta Acustica united with Acustica|Physics / Sound|1610-1928|Bimonthly| |S HIRZEL VERLAG
100
100|Acta Adriatica|Plant & Animal Science|0001-5113|Semiannual| |INST OCEANOGRAFIJU I RIBARSTVO
101
101|Acta Agriculturae Scandinavica Section A-Animal Science|Plant & Animal Science / Animal culture; Animal nutrition / Animal culture; Animal nutrition / Animal culture; Animal nutrition|0906-4702|Quarterly| |TAYLOR & FRANCIS AS
102
102|Acta Agriculturae Scandinavica Section B-Soil and Plant Science|Agricultural Sciences / Horticulture; Soil science; Crops and soils; Plant-soil relationships / Horticulture; Soil science; Crops and soils; Plant-soil relationships|0906-4710|Bimonthly| |TAYLOR & FRANCIS AS
103
103|Acta agriculturae Slovenica| |1581-9175|Quarterly| |UNIV LJUBLJANA
104
104|Acta Agriculturae Universitatis Jiangxiensis| |1000-2286|Bimonthly| |JIANGXI AGRICULTURAL UNIV
105
105|Acta Agrobotanica| |0065-0951|Semiannual| |POLSKIE TOWARZYSTWO BOTANICZNE
106
106|Acta Agronomica Hungarica| |0238-0161|Quarterly| |AKADEMIAI KIADO RT
107
107|Acta Agrophysica| |1234-4125|Irregular| |POLSKA AKAD NAUK
108
108|Acta Albertina Ratisbonensia| |0515-2712|Irregular| |NATURWISSENSCHAFTLICHER VEREIN REGENSBURG E V
109
109|Acta Alimentaria|Agricultural Sciences / Food|0139-3006|Quarterly| |AKADEMIAI KIADO RT
110
110|Acta Amazonica|Natural history; Science; Natuurlijke historie|0044-5967|Irregular| |INST NACIONAL PESQUISAS AMAZONIA
111
111|Acta Anaesthesiologica Scandinavica|Clinical Medicine / Anesthesiology; Critical care medicine; Anesthésie|0001-5172|Monthly| |WILEY-BLACKWELL PUBLISHING
112
112|Acta Analytica-International Periodical for Philosophy in the Analytical Tradition|Analysis (Philosophy); Psychology|0353-5150|Quarterly| |SPRINGER
113
113|Acta Anatomica Nipponica| |0022-7722|Quarterly| |JAPANESE ASSOC ANATOMISTS
114
114|Acta Anatomica Sinica| |0529-1356|Bimonthly| |CHINESE SOC ANATOMICAL SCIENCES
115
115|Acta Anthropologica Sinica| |1000-3193|Quarterly| |ACAD SIN BEIJING
116
116|Acta Applicandae Mathematicae|Mathematics / Mathematics|0167-8019|Monthly| |SPRINGER
117
117|Acta Arachnologica|Spiders; Arachnologie|0001-5202|Semiannual| |ARACHNOLOGICAL SOC JAPAN
118
118|Acta Arachnologica Sinica| |1005-9628|Semiannual| |ARACHNOL SOC CHINA
119
119|Acta Archaeologica|Social Sciences, general / Archaeology|0065-101X|Semiannual| |WILEY-BLACKWELL PUBLISHING
120
120|Acta Arithmetica|Mathematics / Mathematics; Number theory|0065-1036|Semimonthly| |POLISH ACAD SCIENCES INST MATHEMATICS
121
121|Acta Astronautica|Engineering / Astronautics|0094-5765|Semimonthly| |PERGAMON-ELSEVIER SCIENCE LTD
122
122|Acta Astronomica|Space Science|0001-5237|Quarterly| |COPERNICUS FOUNDATION POLISH ASTRONOMY
123
123|Acta Biochimica et Biophysica Sinica|Biology & Biochemistry / Biochemistry; Biophysics|1672-9145|Semiannual| |OXFORD UNIV PRESS
124
124|Acta Biochimica Polonica|Biology & Biochemistry|0001-527X|Quarterly| |ACTA BIOCHIMICA POLONICA
125
125|Acta bioethica|Social Sciences, general /|0717-5906|Semiannual| |PAN AMER HEALTH ORGANIZATION
126
126|Acta Biologiae Experimentalis Sinica| |0001-5334|Quarterly| |ACAD SIN SHANGHAI
127
127|Acta Biologica Benrodis| |0177-9214|Semiannual| |NATURKUNDLICHES HEIMATMUSEUM BENRATH
128
128|Acta Biologica Colombiana| |0120-548X|Semiannual| |UNIV NAC COLOMBIA
129
129|Acta Biologica Cracoviensia Series Botanica|Plant & Animal Science|0001-5296|Annual| |POLSKA AKAD NAUK
130
130|Acta Biologica Cracoviensia Series Zoologia| |0001-530X|Annual| |POLISH ACAD SCIENCES
131
131|Acta Biologica Debrecina| |0567-7327|Irregular| |KOSSUTH LAJOS TUDOMANYEGYETEM
132
132|Acta Biologica Hungarica|Biology & Biochemistry / Biology|0236-5383|Quarterly| |AKADEMIAI KIADO RT
133
133|Acta Biologica Panamensis| |2072-9405|Semiannual| |COLEGIO BIOLOGOS PANAMA-COBIOPA
134
134|Acta Biologica Paranaense| |0301-2123|Annual| |UNIV FEDERAL PARANA
135
135|Acta Biologica Silesiana| |0860-2441|Irregular| |WYDAWNICTWO UNIWERSYTETU SLASKIEGO
136
136|Acta Biologica Slovenica| |1408-3671|Irregular| |DRUSTVO BIOLOGOV SLOVENIJE
137
137|Acta Biologica Szegediensis| |1588-385X|Annual| |UNIV SZEGED
138
138|Acta Biologica Universitatis Daugavpiliensis| |1407-8953|Semiannual| |UNIV DAUGAVPILS
139
139|Acta Biologica Venezuelica| |0001-5326|Quarterly| |UNIV CENTRAL VENEZUELA
140
140|Acta Biomaterialia|Microbiology / Biomedical materials; Biocompatible Materials|1742-7061|Bimonthly| |ELSEVIER SCI LTD
141
141|Acta Bioquimica Clinica Latinoamericana|Biology & Biochemistry|0325-2957|Quarterly| |FEDERACION BIOQUIMICA PROVINCIA BUENOS AIRES
142
142|Acta Biotheoretica|Biology & Biochemistry / Biology; Zoology|0001-5342|Quarterly| |SPRINGER
143
143|Acta Borealia| |0800-3831|Semiannual| |ROUTLEDGE JOURNALS
144
144|Acta Botanica Boreali-Occidentalia Sinica| |1000-4025|Bimonthly| |SHAANXI SCIENTIFIC & TECHNOLOGICAL PRESS
145
145|Acta Botanica Brasilica|Plant & Animal Science / Botany|0102-3306|Quarterly| |SOC BOTANICA BRASIL
146
146|Acta Botanica Croatica|Plant & Animal Science|0365-0588|Semiannual| |UNIV ZAGREB
147
147|Acta Botanica Fennica| |0001-5369|Irregular| |FINNISH ZOOLOGICAL BOTANICAL PUBLISHING BOARD
148
148|Acta Botanica Gallica|Plant & Animal Science|1253-8078|Quarterly| |SOC BOTANIQUE FRANCE
149
149|Acta Botanica Hungarica|Botany; Plants|0236-6495|Quarterly| |AKADEMIAI KIADO RT
150
150|Acta Botanica Indica| |0379-508X|Semiannual| |SOC ADVANCEMENT BOTANY
151
151|Acta Botanica Islandica| |0374-5066|Irregular| |NATTURUFRAEOISTOFNUN NOROURLANDS-AKUREYRI MUSEUM NATURAL HISTORY
152
152|Acta Botanica Malacitana| |0210-9506|Annual| |UNIV MALAGA
153
153|Acta Botanica Mexicana|Plant & Animal Science|0187-7151|Quarterly| |INST ECOLOGIA AC
154
154|Acta Botanica Venezuelica| |0084-5906|Irregular| |FUNDACION INST BOTANICO VENEZUELA DR TOBIAS LASSER
155
155|Acta Botanica Yunnanica|Botany|0253-2700|Bimonthly| |KUNMING INST BOTANY
156
156|Acta Cardiologica|Clinical Medicine /|0001-5385|Bimonthly| |ACTA CARDIOLOGICA
157
157|Acta Cardiologica Sinica|Clinical Medicine|1011-6842|Quarterly| |TAIWAN SOC CARDIOLOGY
158
158|Acta Carsologica|Geosciences|0583-6050|Tri-annual| |KARST RESEARCH INST ZRC SAZU
159
159|Acta Chimica Sinica|Chemistry|0567-7351|Semimonthly| |SCIENCE CHINA PRESS
160
160|Acta Chimica Slovenica|Chemistry|1318-0207|Quarterly| |SLOVENSKO KEMIJSKO DRUSTVO
161
161|Acta Chiropterologica|Plant & Animal Science / Bats|1508-1109|Semiannual| |MUSEUM & INST ZOOLOGY PAS-POLISH ACAD SCIENCES
162
162|Acta Chirurgiae Orthopaedicae et Traumatologiae Cechoslovaca|Clinical Medicine|0001-5415|Bimonthly| |GALEN SRO
163
163|Acta Chirurgica Belgica|Clinical Medicine|0001-5458|Bimonthly| |ACTA MEDICAL BELGICA
164
164|Acta Chromatographica|Chemistry / Chromatographic analysis; Chromatography|1233-2356|Quarterly| |AKADEMIAI KIADO RT
165
165|Acta Cientifica Venezolana| |0001-5504|Quarterly| |ASOCIACION VENEZOLANA PARA EL AVANCE DE LA CIENCIA
166
166|Acta Cirurgica Brasileira|Clinical Medicine / Surgery, Operative; Surgical Procedures, Operative|0102-8650|Bimonthly| |ACTA CIRURGICA BRASILEIRA
167
167|Acta Classica| |0065-1141|Annual| |UNIV FREE STATE
168
168|Acta Clinica Belgica|Clinical Medicine|0001-5512|Bimonthly| |ACTA CLINICA BELGICA
169
169|Acta Clinica Croatica|Clinical Medicine|0353-9466|Quarterly| |SESTRE MILOSRDNICE UNIV HOSPITAL
170
170|Acta Coleopterologica-Munich| |0178-7217|Semiannual| |SOC COLEOPTEROLOGICA E V
171
171|Acta Conchyliorum| |0721-1635|Irregular| |CLUB CONCHYLIA
172
172|Acta Crystallographica Section A|Chemistry / Crystallography; Crystallization; Cristallographie / Crystallography; Cristallographie|0108-7673|Bimonthly| |WILEY-BLACKWELL PUBLISHING
173
173|Acta Crystallographica Section B-Structural Science|Chemistry / Crystallization; Crystallography; Cristallisation; Cristallographie|0108-7681|Bimonthly| |WILEY-BLACKWELL PUBLISHING
174
174|Acta Crystallographica Section C-Crystal Structure Communications|Chemistry / Crystallography; Crystals|0108-2701|Monthly| |WILEY-BLACKWELL PUBLISHING
175
175|Acta Crystallographica Section D-Biological Crystallography|Chemistry / X-ray crystallography; Crystallography; Biomolecules|0907-4449|Monthly| |WILEY-BLACKWELL PUBLISHING
176
176|Acta Crystallographica Section E-Structure Reports Online|Chemistry /|1600-5368|Monthly| |WILEY-BLACKWELL PUBLISHING
177
177|Acta Crystallographica Section F-Structural Biology and Crystallization Communications|Chemistry /|1744-3091|Monthly| |WILEY-BLACKWELL PUBLISHING
178
178|Acta Cytologica|Clinical Medicine|0001-5547|Bimonthly| |SCI PRINTERS & PUBL INC
179
179|Acta Dermato-Venereologica|Clinical Medicine / Dermatology; Sexually transmitted diseases; Sexually Transmitted Diseases; Dermatologie; Maladies transmises sexuellement; Seksueel overdraagbare aandoeningen|0001-5555|Bimonthly| |ACTA DERMATO-VENEREOLOGICA
180
180|Acta Dermatovenerologica Croatica|Clinical Medicine|1330-027X|Quarterly| |CROATION DERMATOVENEROLOGICAL SOC
181
181|Acta Diabetologica|Biology & Biochemistry / Diabetes; Diabetes Mellitus / Diabetes; Diabetes Mellitus|0940-5429|Quarterly| |SPRINGER
182
182|Acta Ecologica Sinica| |1000-0933|Quarterly| |SCIENCE PRESS
183
183|Acta Endocrinologica-Bucharest|Clinical Medicine /|1841-0987|Quarterly| |EDITURA ACAD ROMANE
184
184|Acta Endoscopica|Clinical Medicine / Cineradiography; Endoscopy|0240-642X|Bimonthly| |SPRINGER
185
185|Acta Entomologica Bulgarica| |1310-5914|Irregular| |BULGARIAN ENTOMOLOGICAL SOC
186
186|Acta Entomologica Chilena| |0716-5072|Annual| |INST ENTOMOLOGIA
187
187|Acta Entomologica Iberica E Macaronesica| |0400-4000|Irregular| |SOC PORTUGUESA ENTOMOLOGIA
188
188|Acta Entomologica Musei Nationalis Pragae|Plant & Animal Science|0374-1036|Semiannual| |NARODNI MUZEUM - PRIRODOVEDECKE MUZEUM
189
189|Acta Entomologica Serbica| |0354-9410|Semiannual| |ENTOMOLOGICAL SOC SERBIA
190
190|Acta Entomologica Silesiana| |1230-7777|Irregular| |SILESIAN ENTOMOLOGICAL SOC
191
191|Acta Entomologica Sinica| |0454-6296|Bimonthly| |SCIENCE CHINA PRESS
192
192|Acta Entomologica Slovenica| |1318-1998|Semiannual| |SLOVENSKO ENTOMOLOSKO DRUSTVO STEFANA MICHIELIJA V LJUBLJANI
193
193|acta ethologica|Social Sciences, general / Animal behavior; Human behavior; Psychobiology; Behavior, Animal; Behavior|0873-9749|Semiannual| |SPRINGER HEIDELBERG
194
194|Acta Facultatis Medicae Fluminensis| |0065-1206|Semiannual| |SVEUCILISTA U RIJECI
195
195|Acta Gastro-Enterologica Belgica|Clinical Medicine|0001-5644|Quarterly| |UNIV CATHOLIQUE LOUVAIN-UCL
196
196|Acta Gastroenterologica Latinoamericana| |0300-9033|Bimonthly| |SOC ARGENTINA GASTROENTEROLOGIA
197
197|Acta Geneticae Medicae et Gemellologiae| |0001-5660|Quarterly| |MENDEL INST
198
198|Acta Geodaetica et Geophysica Hungarica|Geosciences / Geodesy; Geophysics|1217-8977|Quarterly| |AKADEMIAI KIADO RT
199
199|Acta Geodynamica et Geomaterialia| |1214-9705|Quarterly| |ACAD SCI CZECH REPUBLIC INST ROCK STRUCTURE & MECHANICS
200
200|Acta Geographica Slovenica-Geografski Zbornik|Social Sciences, general /|1581-6613|Semiannual| |GEOGRAFSKI INST ANTONA MELIKA ZRC SAZU
201
201|Acta Geologica Hungarica|Geology|0236-5278|Quarterly| |AKADEMIAI KIADO RT
202
202|Acta Geologica Lilloana| |0567-7513|Irregular| |FUNDACION MIGUEL LILLO
203
203|Acta Geologica Polonica|Geosciences|0001-5709|Quarterly| |WYDAWNICTWO NAUKOWE INVIT
204
204|Acta Geologica Sinica-English Edition|Geosciences /|1000-9515|Quarterly| |WILEY-BLACKWELL PUBLISHING
205
205|Acta Geologica Taiwanica| |0065-1265|Annual| |NATL TAIWAN UNIV
206
206|Acta Geologica Universitatis Comenianae| |1335-2830|Annual| |UNIV KOMENSKEHO
207
207|Acta Geophysica|Geosciences /|1895-6572|Quarterly| |VERSITA
208
208|Acta Geoscientia Sinica| |1006-3021|Bimonthly| |CHINA INT BOOK TRADING CORP
209
209|Acta Geotechnica Slovenica|Engineering|1854-0171|Semiannual| |UNIV MARIBOR
210
210|Acta Granatense| |1695-6370|Semiannual| |SOC GRANATENSE HIST NAT
211
211|Acta Haematologica|Clinical Medicine / Blood; Hematology; Hematologie|0001-5792|Bimonthly| |KARGER
212
212|Acta Haematologica Polonica| |0001-5814|Quarterly| |POLSKIE TOWARZYSTWO HEMATOLOGOW I TRANSFUZJOLOGOW
213
213|Acta Herpetologica|Plant & Animal Science|1827-9635|Semiannual| |FIRENZE UNIV PRESS
214
214|Acta Histochemica|Molecular Biology & Genetics / Histochemistry; Histology; Biochemistry; Histochemie|0065-1281|Quarterly| |ELSEVIER GMBH
215
215|ACTA HISTOCHEMICA ET CYTOCHEMICA|Molecular Biology & Genetics / Histochemistry; Cytochemistry; Histocytochemistry; Histochemie; Cytochemie|0044-5991|Bimonthly| |JAPAN SOC HISTOCHEM CYTOCHEM
216
216|Acta Historica Tallinnensia| |1406-2925|Annual| |ESTONIAN ACADEMY PUBLISHERS
217
217|Acta Histriae| |1318-0185|Semiannual| |UNIV PRIMORSKA
218
218|Acta Hydrobiologica Sinica|Aquatic biology; Fish culture|1000-3207|Irregular| |CHINESE ACAD SCIENCES
219
219|Acta Ichthyologica Et Piscatoria|Plant & Animal Science / Fishes; Fisheries|0137-1592|Semiannual| |WYDAWNICTWO AKAD ROLNICZEJ W SZCZECINIE
220
220|Acta Informatica|Computer Science / Electronic data processing; Information storage and retrieval systems; Machine theory|0001-5903|Monthly| |SPRINGER
221
221|Acta Limnologica Brasiliensia| |0102-6712|Irregular| |FUNDACAO BIODIVERSITAS
222
222|Acta Linguistica Hungarica|Social Sciences, general / Language and languages|1216-8076|Quarterly| |SPRINGER
223
223|Acta literaria| |0717-6848|Semiannual| |UNIV CONCEPCION
224
224|Acta Manilana| |0065-1370|Annual| |SANTO TOMAS UNIV PRESS
225
225|Acta Materialia|Materials Science / Metallurgy; Materials; Metals; Materiaalkunde; Métallurgie; Matériaux|1359-6454|Semimonthly| |PERGAMON-ELSEVIER SCIENCE LTD
226
226|Acta Mathematica|Mathematics / Mathematics; Wiskunde; Mathématiques|0001-5962|Quarterly| |SPRINGER
227
227|Acta Mathematica Hungarica|Mathematics / Mathematics|0236-5294|Monthly| |SPRINGER
228
228|Acta Mathematica Scientia|Mathematics / Mathematical physics|0252-9602|Quarterly| |ELSEVIER SCIENCE INC
229
229|Acta Mathematica Sinica-English Series|Mathematics / Mathematics|1439-8516|Bimonthly| |SPRINGER HEIDELBERG
230
230|Acta Mathematicae Applicatae Sinica-English Series|Mathematics / Mathematics; Mathématiques / Mathematics; Mathématiques / Mathematics; Mathématiques|0168-9673|Quarterly| |SPRINGER HEIDELBERG
231
231|Acta Mechanica|Engineering / Mechanics, Applied|0001-5970|Monthly| |SPRINGER WIEN
232
232|Acta Mechanica Sinica|Engineering / Mechanics, Analytic; Dynamics|0567-7718|Bimonthly| |SPRINGER HEIDELBERG
233
233|Acta Mechanica Solida Sinica|Engineering / Mechanics, Applied; Mechanics, Analytic|0894-9166|Bimonthly| |ELSEVIER SCIENCE INC
234
234|Acta Medica Croatica| |1330-0164|Bimonthly| |ACAD MEDICAL SCIENCES CROATIA
235
235|Acta Medica et Biologica| |0567-7734|Quarterly| |NIIGATA UNIV SCH MEDICINE
236
236|Acta Medica Mediterranea|Clinical Medicine|0393-6384|Tri-annual| |CARBONE EDITORE
237
237|Acta Medica Nagasakiensia| |0001-6055|Quarterly| |NAGASAKI UNIV SCH MEDICINE
238
238|Acta Medica Okayama|Clinical Medicine|0386-300X|Bimonthly| |OKAYAMA UNIV MED SCHOOL
239
239|Acta Medica Portuguesa|Clinical Medicine|1646-0758|Bimonthly| |ORDEM MEDICOS
240
240|Acta Medica Scandinavica| |0001-6101|Monthly| |SCANDINAVIAN UNIVERSITY PRESS
241
241|ACTA METALLURGICA SINICA|Materials Science /|0412-1961|Monthly| |SCIENCE CHINA PRESS
242
242|Acta Meteorologica Sinica|Geosciences|0894-0525|Quarterly| |ACTA METEOROLOGICA SINICA PRESS
243
243|Acta Microbiologica et Immunologica Hungarica|Microbiology / Microbiology; Allergy and Immunology; Microbiologie; Immunologie|1217-8950|Quarterly| |AKADEMIAI KIADO RT
244
244|Acta Micropalaeontologica Sinica| |1000-0674|Quarterly| |CHINESE ACAD SCIENCES
245
245|Acta Microscopica|Biology & Biochemistry|0798-4545|Semiannual| |COMITE INTERAMERICANO SOC MICROSCOPIA ELECTRONICA-CIASEM
246
246|Acta Montanistica Slovaca|Geosciences|1335-1788|Quarterly| |BERG FAC TECHNICAL UNIV KOSICE
247
247|Acta Morphologica et Anthropologica| |1311-8773|Annual| |MARIN DRINOV ACAD PUBL HOUSE
248
248|Acta Mozartiana| |0001-6233|Semiannual| |DEUTSCHE MOZART-GESELLSCHAFT
249
249|Acta Musaei Neostadeni Bohemiae| |1802-7555|Annual| |MESTSKE MUZEUM NOVE MESTO NAD METUJI
250
250|Acta Musei Moraviae Scientiae Biologicae| |1211-8788|Annual| |MORAVSKE ZEMSKE MUZEUM
251
251|Acta Musei Moraviae Scientiae Geologicae| |1211-8796|Annual| |MORAVSKE ZEMSKE MUZEUM
252
252|Acta Musei Reginaehradecensis Series A Scientiae Naturales| |0439-6812|Irregular| |MUZEUM VYCHODNICH CECH
253
253|Acta Musicologica|Music; Musicology; Muziekwetenschap|0001-6241|Semiannual| |INT MUSICOLOGICAL SOC
254
254|Acta Mycologica| |0001-625X|Semiannual| |POLSKIE TOWARZYSTWO BOTANICZNE
255
255|Acta Naturae-English Edition| |2075-8251|Quarterly| |RUSSIAN FEDERATION AGENCY SCIENCE & INNOVATION
256
256|Acta Neurobiologiae Experimentalis|Neuroscience & Behavior|0065-1400|Quarterly| |NENCKI INST EXPERIMENTAL BIOLOGY
257
257|Acta Neurochirurgica|Clinical Medicine / Nervous system; Neurosurgery; Neurochirurgie|0001-6268|Monthly| |SPRINGER WIEN
258
258|Acta Neurologica Belgica|Clinical Medicine|0300-9009|Quarterly| |ACTA MEDICA BELGICA
259
259|Acta Neurologica Scandinavica|Neuroscience & Behavior / Neurology; Mental Disorders; Neurologie|0001-6314|Monthly| |WILEY-BLACKWELL PUBLISHING
260
260|Acta Neuropathologica|Neuroscience & Behavior / Nervous system; Neurology; Pathology|0001-6322|Monthly| |SPRINGER
261
261|Acta Neuropsychiatrica|Neuroscience & Behavior / Neuropsychiatry; Biological psychiatry; Neuropsychology; Biological Psychiatry|0924-2708|Bimonthly| |WILEY-BLACKWELL PUBLISHING
262
262|Acta Nutrimenta Sinica| |0512-7955|Bimonthly| |INST HYGIENE & ENVIRONMENTAL MEDICINE
263
263|Acta Obstetricia Et Gynecologica Scandinavica|Clinical Medicine / Gynecology; Obstetrics|0001-6349|Monthly| |TAYLOR & FRANCIS AS
264
264|Acta Oceanografica Del Pacifico| |1010-4402| | |INST OCEANOGRAFICO ARMADA ECUADOR
265
265|Acta Oceanologica Sinica|Geosciences /|0253-505X|Quarterly| |SPRINGER
266
266|Acta Odontologica Scandinavica|Clinical Medicine / Dentistry; Tandheelkunde; Dentisterie|0001-6357|Bimonthly| |TAYLOR & FRANCIS AS
267
267|Acta Oecologica-International Journal of Ecology|Environment/Ecology / Ecology; Plant ecology|1146-609X|Bimonthly| |GAUTHIER-VILLARS/EDITIONS ELSEVIER
268
268|Acta Oeconomica|Economics & Business / Economics|0001-6373|Quarterly| |AKADEMIAI KIADO RT
269
269|Acta of Bioengineering and Biomechanics|Biology & Biochemistry|1509-409X|Semiannual| |WROCLAW UNIV TECHNOLOGY
270
270|Acta Oncologica|Clinical Medicine / Oncology; Tumors; Medical Oncology; Neoplasms; Physics; Radiation Effects; Review Literature; Cancer; Oncologie|0284-186X|Bimonthly| |TAYLOR & FRANCIS AS
271
271|Acta Ophthalmologica|Clinical Medicine / Ophthalmology; Eye Diseases|1755-375X|Bimonthly| |WILEY-BLACKWELL PUBLISHING
272
272|Acta Orientalia| |1588-2667|Quarterly| |AKADEMIAI KIADO RT
273
273|Acta Ornithoecologica| |0233-2914|Annual| |M GOERNER
274
274|Acta Ornithologica|Plant & Animal Science / Ornithology|0001-6454|Semiannual| |MUSEUM & INST ZOOLOGY
275
275|Acta Orthopaedica|Clinical Medicine / Orthopedics|1745-3674|Bimonthly| |INFORMA HEALTHCARE
276
276|Acta Orthopaedica Belgica|Clinical Medicine|0001-6462|Bimonthly| |ACTA MEDICA BELGICA
277
277|acta orthopaedica et traumatologica turcica|Clinical Medicine / Orthopedics; Traumatology; Wounds and injuries; Orthopedic Procedures; Wounds and Injuries|1017-995X|Bimonthly| |TURKISH ASSOC ORTHOPAEDICS TRAUMATOLOGY
278
278|Acta Ortopédica Brasileira|Clinical Medicine /|1413-7852|Bimonthly| |ATHA COMUNICACAO & EDITORA
279
279|Acta Oto-Laryngologica|Clinical Medicine / Otolaryngology; Ear; Throat; Oto-rhino-laryngologie; Keel- neus- en oorheelkunde|0001-6489|Monthly| |TAYLOR & FRANCIS AS
280
280|Acta Otorhinolaryngologica Italica|Clinical Medicine|0392-100X|Bimonthly| |PACINI EDITORE
281
281|Acta Paediatrica|Clinical Medicine / Pediatrics; Pédiatrie; Kindergeneeskunde|0803-5253|Monthly| |WILEY-BLACKWELL PUBLISHING
282
283|Acta Palaeontologica Polonica|Geosciences /|0567-7920|Quarterly| |INST PALEOBIOLOGII PAN
283
284|Acta Palaeontologica Sinica| |0001-6616|Quarterly| |SCIENCE CHINA PRESS
284
285|Acta Parasitologica|Biology & Biochemistry / Parasitology; Parasites|1230-2821|Quarterly| |VERSITA
285
286|Acta Parasitologica et Medica Entomologica Sinica| |1005-0507|Quarterly| |ACTA PARASIT MED ENTOMOL SIN
286
287|Acta Paulista de Enfermagem|Social Sciences, general /|0103-2100|Bimonthly| |UNIV FED SAO PAULO
287
288|Acta Petrologica Sinica|Geosciences|1000-0569|Monthly| |SCIENCE CHINA PRESS
288
289|Acta Pharmaceutica|Pharmacology & Toxicology / Pharmacy; Pharmacology; Pharmaceutical Preparations|1330-0075|Quarterly| |HRVATSKO FARMACEUTSKO DRUSTOV (HFD)-CROATION PHARMACEUTICAL SOC
289
290|Acta Pharmaceutica Hungarica| |0001-6659|Bimonthly| |MAGYAR GYOGYSZERESZ TARSASAG HUNGARIAN PHARMACEUTICAL ASSOC
290
291|Acta Pharmaceutica Sciencia| |1307-2080|Tri-annual| |ISTANBUL UNIV
291
292|Acta Pharmaceutica Sinica| |0513-4870|Monthly| |INST MATERIA MEDICA
292
293|Acta Pharmacologica Sinica|Pharmacology & Toxicology / Pharmacology|1671-4083|Monthly| |NATURE PUBLISHING GROUP
293
294|Acta Physica Polonica A|Physics|0587-4246|Monthly| |POLISH ACAD SCIENCES INST PHYSICS
294
295|Acta Physica Polonica B|Physics|0587-4254|Monthly| |POLISH ACAD SCIENCES INST PHYSICS
295
296|Acta Physica Sinica|Physics|1000-3290|Monthly| |CHINESE PHYSICAL SOC
296
297|Acta Physica Slovaca|Physics|0323-0465|Bimonthly| |SLOVAK ACAD SCIENCES INST PHYSICS
297
298|Acta Physico-Chimica Sinica|Chemistry /|1000-6818|Irregular| |PEKING UNIV PRESS
298
299|Acta Physicochimica Urss| | | | |USSR ACAD SCIENCES
299
300|Acta Physiologiae Plantarum|Plant & Animal Science / Plant physiology|0137-5881|Quarterly| |SPRINGER HEIDELBERG
300
301|Acta Physiologica|Biology & Biochemistry / Physiology; Physiological Processes; Physiologie|1748-1708|Monthly| |WILEY-BLACKWELL PUBLISHING
301
302|Acta Physiologica Hungarica|Biology & Biochemistry / Physiology; Physiology, Pathological; Fysiologie; Physiologie|0231-424X|Quarterly| |AKADEMIAI KIADO RT
302
303|Acta Physiologica Sinica| |0371-0874|Bimonthly| |SCIENCE CHINA PRESS
303
304|Acta Phytogeographica Suecica|Botany; Phytogeography; Plantengeografie|0084-5914|Semiannual| |SVENSKA VAXTGEOGRAFISKA SALLSKAPET
304
305|Acta Phytopathologica et Entomologica Hungarica|Plant diseases; Entomology; Plant Diseases|0238-1249|Semiannual| |AKADEMIAI KIADO RT
305
306|Acta Phytopathologica Sinica| |0412-0914|Bimonthly| |CHINESE SOC PLANT PATHOLOGY
306
307|Acta Phytophylacica Sinica| |0577-7518|Quarterly| |CHINA INT BOOK TRADING CORP
307
308|Acta Phytophysiologica Sinica| |0257-4829|Quarterly| |SCIENCE CHINA PRESS
308
309|Acta Politica|Social Sciences, general / Political science|0001-6810|Quarterly| |PALGRAVE MACMILLAN LTD
309
310|Acta Poloniae Historica| |0001-6829|Semiannual| |INST HIST PAN
310
311|Acta Poloniae Pharmaceutica|Pharmacology & Toxicology|0001-6837|Quarterly| |POLSKIEGO TOWARZYSTWA FARMACEUTYCZNEGO
311
312|Acta Polymerica Sinica|Chemistry / Polymers; Polymerization|1000-3304|Bimonthly| |SCIENCE CHINA PRESS
312
313|Acta Polytechnica Hungarica|Engineering|1785-8860|Quarterly| |BUDAPEST TECH
313
314|Acta Protozoologica|Biology & Biochemistry|0065-1583|Quarterly| |JAGIELLONIAN UNIV
314
315|Acta Psychiatrica et Neurologica| |0365-558X|Annual| |BLACKWELL MUNKSGAARD
315
316|Acta Psychiatrica et Neurologica Scandinavica| |0001-6314|Annual| |BLACKWELL MUNKSGAARD
316
317|Acta Psychiatrica et Neurologica Scandinavica Supplementum| |0065-1591|Quarterly| |BLACKWELL MUNKSGAARD
317
318|Acta Psychiatrica et Neurologica Supplementum| |0105-0028|Quarterly| |BLACKWELL MUNKSGAARD
318
319|Acta Psychiatrica Scandinavica|Psychiatry/Psychology / Psychiatry; Mental Disorders; Psychiatrie|0001-690X|Monthly| |WILEY-BLACKWELL PUBLISHING
319
320|Acta Psychologica|Psychiatry/Psychology / Psychology|0001-6918|Monthly| |ELSEVIER SCIENCE BV
320
321|Acta Radiologica|Clinical Medicine / Radiology, Medical; Radiography, Medical; Radiotherapy; Radiography; Radionuclide Imaging; Radiologie médicale; Radiologie|0284-1851|Bimonthly| |TAYLOR & FRANCIS LTD
321
322|Acta Reumatologica Portuguesa|Clinical Medicine|0303-464X|Quarterly| |MEDFARMA-EDICOES MEDICAS
322
323|Acta Scientiae Circumstantiae| |0253-2468|Bimonthly| |CHINA INT BOOK TRADING CORP
323
324|Acta Scientiae Veterinariae|Plant & Animal Science|1678-0345|Tri-annual| |UNIV FED RIO GRANDE DO SUL
324
325|Acta Scientiarum Naturalium Universitatis Nankaiensis| |0465-7942|Quarterly| |NANKAI UNIV
325
326|Acta Scientiarum Naturalium Universitatis Pekinensis| |0479-8023|Bimonthly| |CHINA INT BOOK TRADING CORP
326
327|Acta Scientiarum Naturalium Universitatis Sunyatseni| |0529-6579|Bimonthly| |CHINA INT BOOK TRADING CORP
327
328|Acta Scientiarum Polonorum-Hortorum Cultus|Plant & Animal Science|1644-0692|Quarterly| |WYDAWNICTWO AKAD ROLNICZEJ W LUBLINIE
328
329|Acta Scientiarum-Agronomy|Agricultural Sciences / Agronomy; Aronomy|1679-9275|Quarterly| |UNIV ESTADUAL MARINGA
329
330|Acta Scientiarum-Animal Sciences|Zoology|1806-2636|Quarterly| |UNIV ESTADUAL MARINGA
330
331|Acta Scientiarum-Biological Sciences|Biology; Biological Sciences|1679-9283|Quarterly| |UNIV ESTADUAL MARINGA
331
332|Acta Scientiarum-Health Sciences|Medical sciences; Medicine|1679-9291|Quarterly| |UNIV ESTADUAL MARINGA
332
333|Acta Scientiarum-Technology|Multidisciplinary / Technology|1806-2563|Quarterly| |UNIV ESTADUAL MARINGA
333
334|Acta Sedimentologica Sinica| |1000-0550|Quarterly| |SCIENCE PRESS
334
335|Acta Silvatica & Lignaria Hungarica| |1786-691X|Annual| |HUNGARIAN ACAD SCIENCES
335
336|Acta Societatis Botanicorum Poloniae|Plant & Animal Science|0001-6977|Quarterly| |POLSKIE TOWARZYSTWO BOTANICZNE
336
337|Acta Societatis Zoologicae Bohemicae| |1211-376X|Quarterly| |CZECH ZOOLOGICAL SOC
337
338|Acta Sociologica|Social Sciences, general / Sociology; Sociologie|0001-6993|Quarterly| |SAGE PUBLICATIONS LTD
338
339|Acta Theologica| |1015-8758|Semiannual| |UNIV FREE STATE
339
340|ACTA THERIOLOGICA|Plant & Animal Science /|0001-7051|Quarterly| |POLISH ACAD SCIENCES
340
341|Acta Theriologica Sinica| |1000-1050|Quarterly| |SCIENCE CHINA PRESS
341
342|Acta Tropica|Clinical Medicine / Science; Tropical medicine; Ethnology; Tropical Medicine; Médecine tropicale; Ethnologie; Tropische geneeskunde|0001-706X|Monthly| |ELSEVIER SCIENCE BV
342
343|Acta Universitatis Agriculturae et Silviculturae Mendelianae Brunensis| |1211-8516|Bimonthly| |USTREDNI KNIHOVNA MZLU V BRNE
343
344|Acta Universitatis Carolinae Environmentalica| |0862-6529|Annual| |UNIV KARLOVA
344
345|Acta Universitatis Carolinae Geologica| |0001-7132|Quarterly| |UNIV KARLOVA
345
346|Acta Universitatis Carolinae-Biologica| |0001-7124|Quarterly| |CHARLES UNIV PRAGUE
346
347|Acta Universitatis Lodziensis Folia Biologica et Oecologica| |1730-2366|Irregular| |WYDAWNICTWO UNIWERSYTETU LODZKIEGO
347
348|Acta Universitatis Lodziensis Folia Limnologica| |0208-6158|Irregular| |WYDAWNICTWO UNIWERSYTETU LODZKIEGO
348
349|Acta Universitatis Lodziensis Folia Zoologica| |1230-0527|Irregular| |BIBLIOTEKA UNIWERSYTECKA
349
350|Acta Universitatis Lodziensis-Folia Biochimica et Biophysica| |0208-614X|Irregular| |BIBLIOTEKA UNIWERSYTECKA
350
351|Acta Universitatis Nicolai Copernici Biologia| |0208-4449|Irregular| |UNIWERSYTET MIKOLAJA KOPERNIKA W TORUNIU
351
352|Acta Universitatis Nicolai Copernici Prace Limnologiczne| |0208-5348|Irregular| |UNIWERSYTET MIKOLAJA KOPERNIKA W TORUNIU
352
353|Acta Universitatis Stockholmiensis Stockholm Contributions in Geology| |0585-3532|Irregular| |ALMQVIST & WIKSELL INT
353
354|Acta Universitatis Upsaliensis Symbolae Botanicae Upsalienses| |0082-0644|Irregular| |UPPSALA UNIV
354
355|Acta Veterinaria Brasilica| |1981-5484|Quarterly| |PRO-REITORIA PESQUISA POS-GRADUACO-UFERSA
355
356|Acta Veterinaria Brno|Plant & Animal Science / Veterinary medicine; Veterinary Medicine|0001-7213|Quarterly| |VETERINARNI A FARMACEUTICKA UNIVERZITA BRNO
356
357|Acta Veterinaria Hungarica|Plant & Animal Science / Veterinary medicine; Veterinary Medicine|0236-6290|Quarterly| |AKADEMIAI KIADO RT
357
358|Acta Veterinaria Scandinavica|Plant & Animal Science / Veterinary medicine; Veterinary Medicine|0044-605X|Quarterly| |BIOMED CENTRAL LTD
358
359|Acta Veterinaria-Beograd|Plant & Animal Science / Veterinary medicine; Veterinary Medicine|0567-8315|Quarterly| |VETERINARY FACULTY
359
360|Acta Virologica|Microbiology /|0001-723X|Bimonthly| |SLOVAK ACADEMIC PRESS LTD
360
361|Acta Zoologica|Plant & Animal Science / Zoology; Dierkunde|0001-7272|Quarterly| |WILEY-BLACKWELL PUBLISHING
361
362|Acta Zoologica Academiae Scientiarum Hungaricae|Plant & Animal Science|1217-8837|Quarterly| |HUNGARIAN NATURAL HISTORY MUSEUM
362
363|Acta Zoologica Bulgarica|Plant & Animal Science|0324-0770|Tri-annual| |INST ZOOLOGY
363
364|Acta Zoologica Cracoviensia Ser A-Vertebrata|Vertebrates; Zoology|1895-3123|Semiannual| |POLISH ACAD SCIENCES
364
365|Acta Zoologica Cracoviensia Ser B-Invertebrata|Invertebrates; Zoology|1895-3131|Semiannual| |POLISH ACAD SCIENCES
365
366|Acta Zoologica Fennica| |0001-7299|Quarterly| |FINNISH ZOOLOGICAL BOTANICAL PUBLISHING BOARD
366
367|Acta Zoologica Lilloana| |0065-1729|Irregular| |FUNDACION MIGUEL LILLO
367
368|Acta Zoologica Lituanica|Zoology|1392-1657|Quarterly| |INST ECOLOGY
368
369|Acta Zoologica Mexicana-Nueva Serie| |0065-1737|Irregular| |INST ECOLOGIA A C
369
370|Acta Zoologica Sinica| |0001-7302|Quarterly| |SCIENCE CHINA PRESS
370
371|Acta Zoologica Taiwanica| |1019-5858|Semiannual| |NATL TAIWAN UNIV
371
372|Acta Zoologica Universitatis Comenianae| |1336-510X|Annual| |UNIV KOMENSKEHO
372
373|Acta Zootaxonomica Sinica| |1000-0739|Irregular| |SCIENCE CHINA PRESS
373
374|Actas Espanolas de Psiquiatria|Psychiatry/Psychology|1139-9287|Bimonthly| |GRUPO ARS XXI COMUNICACION S L
374
375|Actas Urológicas Españolas|Clinical Medicine /|0210-4806|Monthly| |ENE EDICIONES SL
375
376|Actes de Colloques-Ifremer| |0761-3962|Irregular| |INST FRANCAIS RECHERCHE EXPLOITATION MER-IFREMER
376
377|Actes de la recherche en sciences sociales|Social Sciences, general / Social sciences; Sciences sociales; Sociale wetenschappen|0335-5322|Quarterly| |EDITIONS SEUIL
377
378|Action Research|Social Sciences, general / Action research|1476-7503|Quarterly| |SAGE PUBLICATIONS LTD
378
379|Actual Problems of Economics|Economics & Business|1993-6788|Monthly| |NATIONAL ACAD MANAGEMENT
379
380|Actualidades Biologicas| |0304-3584|Semiannual| |UNIV ANTIOQUIA
380
381|Actualite Chimique|Chemistry|0151-9093|Monthly| |SOC FRANCAISE CHIMIE
381
382|Acupuncture & Electro-Therapeutics Research|Clinical Medicine|0360-1293|Tri-annual| |COGNIZANT COMMUNICATION CORP
382
383|Acupuncture in Medicine| |0964-5284|Quarterly| |B M J PUBLISHING GROUP
383
384|Ad Hoc & Sensor Wireless Networks|Computer Science|1551-9899|Bimonthly| |OLD CITY PUBLISHING INC
384
385|Ad Hoc Networks|Computer Science / Sensor networks; Mobile computing; Mobile communication systems; Wireless communication systems; Computernetwerken|1570-8705|Bimonthly| |ELSEVIER SCIENCE BV
385
386|Adalya| |1301-2746|Annual| |SUNA & INAN KIRAC RESEARCH INST MEDITERRANEAN CIVILIZATIONS
386
387|Adansonia|Plant & Animal Science|1280-8571|Semiannual| |PUBLICATIONS SCIENTIFIQUES DU MUSEUM
387
388|Adapted Physical Activity Quarterly|Social Sciences, general|0736-5829|Quarterly| |HUMAN KINETICS PUBL INC
388
389|Adaptive Behavior|Psychiatry/Psychology / Animal behavior; Animals; Artificial intelligence; Adaptation, Psychological; Animal Population Groups; Artificial Intelligence; Behavior, Animal|1059-7123|Bimonthly| |SAGE PUBLICATIONS LTD
389
390|Addiction|Clinical Medicine / Alcoholism; Drug addiction; Substance-Related Disorders; Tobacco Use Disorder; Verslaving|0965-2140|Monthly| |WILEY-BLACKWELL PUBLISHING
390
391|Addiction Biology|Neuroscience & Behavior / Substance abuse; Alcoholism; Substance-Related Disorders; Tobacco Use Disorder|1355-6215|Quarterly| |WILEY-BLACKWELL PUBLISHING
391
392|Addiction Research & Theory|Social Sciences, general / Substance abuse; Compulsive behavior; Behavior, Addictive; Substance-Related Disorders|1606-6359|Bimonthly| |TAYLOR & FRANCIS LTD
392
393|Addictive Behaviors|Psychiatry/Psychology / Alcoholism; Drug addiction; Obesity; Nicotine addiction; Behavior; Smoking; Alcoolisme; Toxicomanie; Obésité; Tabagisme|0306-4603|Monthly| |PERGAMON-ELSEVIER SCIENCE LTD
393
394|Adicciones|Clinical Medicine|0214-4840|Quarterly| |SOCIDROGALCOHOL
394
395|Administration & Society|Social Sciences, general / Public administration; Bestuursrecht; Overheid; Openbaar bestuur; Administration publique (Science) / Public administration; Bestuursrecht; Overheid; Openbaar bestuur; Administration publique (Science)|0095-3997|Bimonthly| |SAGE PUBLICATIONS INC
395
396|Administration and Policy in Mental Health and Mental Health Services Research|Mental health services; Mental health policy; Health Policy; Mental Health; Mental Health Services / Mental health services; Mental health policy; Health Policy; Mental Health; Mental Health Services|0894-587X|Bimonthly| |MAIK NAUKA/INTERPERIODICA/SPRINGER
396
397|Administration in Social Work|Social Sciences, general / Social work administration; Organization and Administration; Social Work|0364-3107|Quarterly| |HAWORTH PRESS INC
397
398|Administrative Law Review|Social Sciences, general|0001-8368|Quarterly| |AMER BAR ASSOC
398
399|Administrative Science Quarterly|Economics & Business / Management; Organization; Public administration; Organization and Administration; Administratieve organisatie; Bestuurlijke informatieverzorging|0001-8392|Quarterly| |ADMINISTRATIVE
399
400|Adolescence|Psychiatry/Psychology /|0001-8449|Quarterly| |LIBRA PUBLISHERS INC
400
401|Adolescent Psychiatry|Psychiatry/Psychology|0065-2008|Annual| |ANALYTIC PRESS
401
402|Adsorption Science & Technology|Chemistry / Adsorption|0263-6174|Monthly| |MULTI-SCIENCE PUBL CO LTD
402
403|Adsorption-Journal of the International Adsorption Society|Chemistry / Adsorption|0929-5607|Bimonthly| |SPRINGER
403
404|Adult Education Quarterly|Social Sciences, general / Adult education|0741-7136|Quarterly| |SAGE PUBLICATIONS INC
404
405|Advanced Composite Materials|Materials Science / Composite materials; Reinforced plastics|0924-3046|Quarterly| |VSP BV
405
406|Advanced Composites Letters|Materials Science|0963-6935|Bimonthly| |ADCOTEC LTD
406
407|Advanced Drug Delivery Reviews|Pharmacology & Toxicology / Drug delivery systems; Drugs; Pharmaceutical Preparations; Médicaments|0169-409X|Monthly| |ELSEVIER SCIENCE BV
407
408|Advanced Engineering Informatics|Engineering / Engineering; Artificial intelligence; Expert systems (Computer science); Productieprocessen; Kunstmatige intelligentie|1474-0346|Quarterly| |ELSEVIER SCI LTD
408
409|Advanced Engineering Materials|Materials Science / Materials; Materiaalkunde|1438-1656|Monthly| |WILEY-V C H VERLAG GMBH
409
410|Advanced Functional Materials|Materials Science / Molecular electronics; Electrooptics; Optoelectronics; Materiaalkunde|1616-301X|Monthly| |WILEY-V C H VERLAG GMBH
410
411|Advanced Materials|Materials Science / Materials; Chemical vapor deposition; Materialen; Vernieuwing; Technologie|0935-9648|Semimonthly| |WILEY-V C H VERLAG GMBH
411
412|Advanced Materials & Processes|Materials Science|0882-7958|Monthly| |ASM INT
412
413|Advanced Nonlinear Studies|Mathematics|1536-1365|Quarterly| |ADVANCED NONLINEAR STUDIES
413
414|Advanced Powder Technology|Chemistry / Powders; Particles; Granular materials|0921-8831|Bimonthly| |ELSEVIER SCIENCE BV
414
415|Advanced Robotics|Engineering / Robotics|0169-1864|Bimonthly| |VSP BV
415
416|Advanced Science Letters|Multidisciplinary|1936-6612|Quarterly| |AMER SCIENTIFIC PUBLISHERS
416
417|Advanced Steel Construction|Engineering|1816-112X|Quarterly| |HONG KONG INST STEEL CONSTRUCTION
417
418|Advanced Studies in Biology| |1313-9495|Tri-annual| |HIKARI LTD
418
419|Advanced Synthesis & Catalysis|Chemistry / Chemistry; Chemistry, Technical; Catalysis; Technology, Pharmaceutical; Procestechnologie; Katalyse; Synthese (chemie)|1615-4150|Semimonthly| |WILEY-V C H VERLAG GMBH
419
420|Advances in Agronomy|Agricultural Sciences|0065-2113|Irregular| |ELSEVIER ACADEMIC PRESS INC
420
421|Advances in Amphibian Research in the Former Soviet Union| |1310-8840|Annual| |PENSOFT PUBLISHERS
421
422|Advances in Anatomic Pathology|Clinical Medicine / Pathology; Pathology, Surgical|1072-4109|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
422
423|Advances in Anatomy Embryology and Cell Biology|Molecular Biology & Genetics|0301-5556|Quarterly| |SPRINGER-VERLAG BERLIN
423
424|Advances in Applied Ceramics|Materials Science / Ceramics|1743-6753|Bimonthly| |MANEY PUBLISHING
424
425|Advances in Applied Clifford Algebras|Mathematics / Clifford algebras|0188-7009|Quarterly| |BIRKHAUSER VERLAG AG
425
426|Advances in Applied Mathematics|Mathematics / Mathematics|0196-8858|Bimonthly| |ACADEMIC PRESS INC ELSEVIER SCIENCE
426
427|Advances in Applied Mechanics|Engineering|0065-2156|Annual| |ELSEVIER ACADEMIC PRESS INC
427
428|Advances in Applied Microbiology Series| |0065-2164|Irregular| |ELSEVIER ACADEMIC PRESS INC
428
429|Advances in Applied Probability|Mathematics / Probabilities; Mathematics; Probability; Statistics|0001-8678|Quarterly| |APPLIED PROBABILITY TRUST
429
430|Advances in Atmospheric Sciences|Geosciences / Meteorology; Marine meteorology|0256-1530|Bimonthly| |SCIENCE CHINA PRESS
430
431|Advances in Atomic Molecular and Optical Physics|Physics|1049-250X|Annual| |ELSEVIER ACADEMIC PRESS INC
431
432|Advances in Atomic Molecular and Optical Physics| |0065-2199|Annual| |ACADEMIC PRESS INC ELSEVIER SCIENCE
432
433|Advances in Biochemical Engineering-Biotechnology| |0724-6145|Irregular| |SPRINGER-VERLAG BERLIN
433
434|Advances in Biophysics|Biology & Biochemistry / Biophysics; Biophysique|0065-227X|Annual| |JAPAN SCIENTIFIC SOC PRESS
434
435|Advances in Botanical Research|Botany; Botanica|0065-2296|Irregular| |ACADEMIC PRESS LTD-ELSEVIER SCIENCE LTD
435
436|Advances in Cancer Research|Clinical Medicine / Cancer; Neoplasms, Experimental|0065-230X|Irregular| |ELSEVIER ACADEMIC PRESS INC
436
437|Advances in Carbohydrate Chemistry and Biochemistry Series|Carbohydrates; Biochimie; Glucides; Biochemistry|0065-2318|Irregular| |ELSEVIER ACADEMIC PRESS INC
437
438|Advances in Cardiology|Clinical Medicine|0065-2326|Irregular| |KARGER
438
439|Advances in Catalysis|Chemistry|0360-0564|Annual| |ELSEVIER ACADEMIC PRESS INC
439
440|Advances in Cement Research|Materials Science / Cement; Cement industries|0951-7197|Quarterly| |THOMAS TELFORD PUBLISHING
440
441|Advances in Chemical Physics|Chemistry|0065-2385|Annual| |JOHN WILEY & SONS INC
441
442|Advances in Chemical Physics| |0065-2385|Annual| |JOHN WILEY & SONS INC
442
443|Advances in Child Development and Behavior|Psychiatry/Psychology|0065-2407|Irregular| |ELSEVIER ACADEMIC PRESS INC
443
444|Advances in Chromatography|Chemistry|0065-2415|Annual| |CRC PRESS-TAYLOR & FRANCIS GROUP
444
445|Advances in Chronic Kidney Disease|Clinical Medicine /|1548-5595|Quarterly| |W B SAUNDERS CO-ELSEVIER INC
445
446|Advances in Clinical and Experimental Medicine|Clinical Medicine|1230-025X|Bimonthly| |WROCLAW MEDICAL UNIV
446
447|Advances in Clinical Chemistry|Clinical Medicine|0065-2423|Irregular| |ELSEVIER ACADEMIC PRESS INC
447
448|Advances in Colloid and Interface Science|Chemistry / Surface chemistry; Colloids; Chemistry, Physical|0001-8686|Semimonthly| |ELSEVIER SCIENCE BV
448
449|Advances in Complex Systems|Multidisciplinary /|0219-5259|Bimonthly| |WORLD SCIENTIFIC PUBL CO PTE LTD
449
450|Advances in Computational Mathematics|Mathematics / Numerical calculations; Numerical analysis|1019-7168|Bimonthly| |SPRINGER
450
451|Advances in Computers|Computer Science|0065-2458|Annual| |ELSEVIER ACADEMIC PRESS INC
451
452|Advances in Difference Equations|Mathematics / Difference equations|1687-1839|Quarterly| |HINDAWI PUBLISHING CORPORATION
452
453|Advances in Differential Equations|Mathematics|1079-9389|Monthly| |KHAYYAM PUBL CO INC
453
454|Advances in Ecological Research|Environment/Ecology / Ecology; Research; Ecologie; Écologie|0065-2504|Irregular| |ELSEVIER ACADEMIC PRESS INC
454
455|Advances in Electrical and Computer Engineering|Engineering /|1582-7445|Semiannual| |UNIV SUCEAVA
455
456|Advances in Engineering Software|Computer Science / Engineering|0965-9978|Monthly| |ELSEVIER SCI LTD
456
457|Advances in Environmental Biology| |1995-0756|Tri-annual| |AM-EURASIAN NETWORK SCI INFORMATION-AENSI
457
458|Advances in Enzymology and Related Subjects| |0065-258X|Irregular| |JOHN WILEY & SONS INC
458
459|Advances in Enzymology and Related Subjects of Biochemistry| |0065-258X|Irregular| |JOHN WILEY & SONS INC
459
460|Advances in Experimental Medicine and Biology|Clinical Medicine|0065-2598|Irregular| |SPRINGER-VERLAG BERLIN
460
461|Advances in Experimental Social Psychology|Psychiatry/Psychology / Social psychology; Psychology, Experimental; Psychology, Social; Sociale psychologie; Psychologie sociale|0065-2601|Annual| |ELSEVIER ACADEMIC PRESS INC
461
462|Advances in Fish Research| | |Irregular| |NARENDRA PUBL HOUSE
462
463|Advances in Food Sciences| |1431-7737|Quarterly| |PARLAR SCIENTIFIC PUBLICATIONS (P S P)
463
464|Advances in Genetics| |0065-2660|Irregular| |ELSEVIER ACADEMIC PRESS INC
464
465|Advances in Geometry|Mathematics / Geometry|1615-715X|Quarterly| |WALTER DE GRUYTER & CO
465
466|Advances in Geophysics|Geosciences / Geophysics; Geology; Physics; Weather; Geofysica|0065-2687|Annual| |ELSEVIER ACADEMIC PRESS INC
466
467|Advances in Health Sciences Education|Social Sciences, general / Education, Dental; Education, Medical; Education, Nursing; Physical Therapy (Specialty); Wetenschappelijk onderwijs; Geneeskunde|1382-4996|Tri-annual| |SPRINGER
467
468|Advances in Heterocyclic Chemistry|Chemistry / Heterocyclic compounds; Heterocyclic Compounds; Composés hétérocycliques; Chimie organique|0065-2725|Annual| |ELSEVIER ACADEMIC PRESS INC
468
469|Advances in Horticultural Science| |0394-6169|Quarterly| |FIRENZE UNIV PRESS
469
470|Advances in Human Genetics| |0065-275X|Irregular| |KLUWER ACADEMIC/PLENUM PUBL
470
471|Advances in Imaging and Electron Physics|Physics|1076-5670|Irregular| |ELSEVIER ACADEMIC PRESS INC
471
472|Advances in Immunology|Immunology / Immunology; Allergy and Immunology; Immunologie|0065-2776|Irregular| |ELSEVIER ACADEMIC PRESS INC
472
473|Advances in Inorganic Chemistry|Chemistry / Chemistry, Inorganic; Chemistry; Anorganische chemie; Chimie inorganique|0898-8838|Annual| |ELSEVIER ACADEMIC PRESS INC
473
474|Advances in Insect Physiology|Plant & Animal Science|0065-2806|Irregular| |ACADEMIC PRESS LTD-ELSEVIER SCIENCE LTD
474
475|Advances in Marine Biology|Marine biology; Marine Biology|0065-2881|Irregular| |ELSEVIER ACADEMIC PRESS INC
475
476|Advances in Mathematics|Mathematics / Mathematics; Mathématiques; Wiskunde|0001-8708|Semimonthly| |ACADEMIC PRESS INC ELSEVIER SCIENCE
476
477|Advances in Mathematics of Communications|Mathematics / Telecommunication; Mathematics|1930-5346|Quarterly| |AMER INST MATHEMATICAL SCIENCES
477
478|Advances in Medical Sciences|Clinical Medicine / Medicine; Medical sciences|1896-1126|Semiannual| |MEDICAL UNIV BIALYSTOK
478
479|Advances in Microbial Ecology|Environment/Ecology|0147-4863|Irregular| |KLUWER ACADEMIC/PLENUM PUBL
479
480|Advances in Microbial Physiology|Microbiology / Microorganisms; Biochemistry; Microbiology; Microbiologie; Fysiologie; Moleculaire biologie; Biotechnologie; Micro-organismes|0065-2911|Irregular| |ACADEMIC PRESS LTD-ELSEVIER SCIENCE LTD
480
481|Advances in Neurology|Neuroscience & Behavior|0091-3952|Irregular| |LIPPINCOTT WILLIAMS & WILKINS
481
482|Advances in Nuclear Physics|Physics|0065-2970|Annual| |KLUWER ACADEMIC/PLENUM PUBL
482
483|Advances in Nursing Science|Social Sciences, general|0161-9268|Quarterly| |LIPPINCOTT WILLIAMS & WILKINS
483
484|Advances in Nutritional Research|Agricultural Sciences|0149-9483|Irregular| |PLENUM PRESS DIV PLENUM PUBLISHING CORP
484
485|Advances in Organometallic Chemistry|Chemistry|0065-3055|Annual| |ELSEVIER ACADEMIC PRESS INC
485
486|Advances in Parasitology|Microbiology /|0065-308X|Irregular| |ELSEVIER ACADEMIC PRESS INC
486
487|Advances in Physical Organic Chemistry Series|Physical organic chemistry; Chemistry; Chimie organique physique|0065-3160|Annual| |ACADEMIC PRESS LTD-ELSEVIER SCIENCE LTD
487
488|Advances In Physics|Physics / Physics; Natuurkunde; Physique|0001-8732|Bimonthly| |TAYLOR & FRANCIS LTD
488
489|Advances in Physiology Education|Biology & Biochemistry / Physiology; Teaching|1043-4046|Quarterly| |AMER PHYSIOLOGICAL SOC
489
490|Advances in Plant Sciences| |0970-3586|Semiannual| |ACAD PLANT SCIENCES
490
491|Advances in Polymer Science|Chemistry|0065-3195|Irregular| |SPRINGER-VERLAG BERLIN
491
492|Advances in Polymer Science| |0065-3195|Quarterly| |SPRINGER
492
493|Advances in Polymer Technology|Chemistry / Plastics; Polymers; Matières plastiques; Polymères|0730-6679|Quarterly| |JOHN WILEY & SONS INC
493
494|Advances in Protein Chemistry and Structural Biology| |1876-1623|Annual| |ELSEVIER ACADEMIC PRESS INC
494
495|Advances in Psychosomatic Medicine|Clinical Medicine|0065-3268|Annual| |KARGER
495
496|Advances in Quantum Chemistry|Chemistry|0065-3276|Annual| |ELSEVIER ACADEMIC PRESS INC
496
497|Advances in Services Marketing and Management|Economics & Business|1067-5671|Annual| |JAI-ELSEVIER LTD
497
498|Advances in Space Research|Space Science / Space sciences; Astronautics; Geophysics; Ruimteonderzoek; Sterrenkunde|0273-1177|Semimonthly| |ELSEVIER SCI LTD
498
499|Advances in Strategic Management-A Research Annual| |0742-3322|Annual| |EMERALD GROUP PUBLISHING LIMITED
499
500|Advances in Structural Engineering|Engineering / Structural engineering|1369-4332|Bimonthly| |MULTI-SCIENCE PUBL CO LTD
500
501|Advances in the Study of Behavior|Neuroscience & Behavior / Animal behavior; Human behavior; Psychology, Comparative; Behavior; Gedragstherapie; Animaux; Comportement humain; Psychologie comparée|0065-3454|Irregular| |ELSEVIER ACADEMIC PRESS INC
501
502|Advances in Theoretical and Mathematical Physics|Physics|1095-0761|Bimonthly| |INT PRESS BOSTON
502
503|Advances in Therapy|Clinical Medicine / Diagnosis; Drug Therapy; Equipment and Supplies|0741-238X|Monthly| |SPRINGER
503
504|Advances in Vibration Engineering|Engineering|0972-5768|Quarterly| |KRISHTEL EMAGING SOLUTIONS PVT LTD
504
505|Advances in Virus Research|Microbiology / Virology; Virologie|0065-3527|Irregular| |ELSEVIER ACADEMIC PRESS INC
505
506|Advances in Water Resources|Engineering / Hydraulic engineering; Hydrodynamics|0309-1708|Monthly| |ELSEVIER SCI LTD
506
507|Adverse Drug Reaction Bulletin|Drugs; Drug Therapy|0044-6394|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
507
508|Adverse Drug Reaction Journal-China| |1008-5734|Quarterly| |ADVERSE DRUG REACTION JOURNAL
508
509|Aequationes Mathematicae|Mathematics; Functional equations; Mathematical analysis; Mathématiques; Équations fonctionnelles; Analyse mathématique|0001-9054|Bimonthly| |BIRKHAUSER VERLAG AG
509
510|Aerobiologia|Environment/Ecology / Air; Air Microbiology; Atmosphere|0393-5965|Quarterly| |SPRINGER
510
511|Aeronautical Journal|Engineering|0001-9240|Monthly| |ROYAL AERONAUTICAL SOC
511
512|Aerosol and Air Quality Research|Environment/Ecology /|1680-8584|Quarterly| |TAIWAN ASSOC AEROSOL RES-TAAR
512
513|Aerosol Science and Technology|Engineering / Aerosols; Aerosol Propellants / Aerosols; Aerosol Propellants|0278-6826|Monthly| |TAYLOR & FRANCIS INC
513
514|Aerospace America|Engineering|0740-722X|Monthly| |AMER INST AERONAUT ASTRONAUT
514
515|Aerospace Science and Technology|Engineering / Aeronautics; Astronautics|1270-9638|Bimonthly| |ELSEVIER FRANCE-EDITIONS SCIENTIFIQUES MEDICALES ELSEVIER
515
516|Aesthetic Plastic Surgery|Clinical Medicine / Surgery, Plastic; Esthetics; Plastische chirurgie; Cosmetische chirurgie|0364-216X|Bimonthly| |SPRINGER
516
517|Aeu-International Journal of Electronics and Communications|Computer Science /|1434-8411|Bimonthly| |ELSEVIER GMBH
517
518|Aevum-Rassegna Di Scienze Storiche Linguistiche E Filologiche| |0001-9593|Tri-annual| |VITA PENSIERO
518
519|Affilia-Journal of Women and Social Work|Social Sciences, general / Social work with women; Women social workers; Social service; Service social aux femmes; Travailleuses sociales; Service social|0886-1099|Irregular| |SAGE PUBLICATIONS INC
519
520|Afinidad|Chemistry|0001-9704|Bimonthly| |ASOC QUIMICOS
520
521|Africa|Social Sciences, general / African languages; Ethnology; Research; Langues africaines; Etnografie; SOCIAL CONDITIONS; POLITICAL CONDITIONS; ECONOMIC CONDITIONS|0001-9720|Quarterly| |EDINBURGH UNIV PRESS
521
522|Africa Birds & Birding| |1025-8264|Bimonthly| |BLACK EAGLE PUBLISHING
522
523|Africa Geoscience Review| |1117-370X|Quarterly| |ROCK VIEW INT
523
524|African Affairs|Social Sciences, general / Politieke ontwikkeling|0001-9909|Quarterly| |OXFORD UNIV PRESS
524
525|African American Review|American literature; African American arts|1062-4783|Quarterly| |AFRICAN AMER REVIEW
525
526|African and Asian Studies|Social Sciences, general /|1569-2094|Tri-annual| |BRILL ACADEMIC PUBLISHERS
526
527|African Archaeological Review|Excavations (Archaeology); Antiquities, Prehistoric; Prehistoric peoples / Excavations (Archaeology); Antiquities, Prehistoric; Prehistoric peoples|0263-0338|Semiannual| |SPRINGER
527
528|African Arts|Art, African; Art africain|0001-9933|Quarterly| |M I T PRESS
528
529|African Bat Conservation News| |1812-1268|Quarterly| |TRANSVAAL MUSEUM
529
530|African Chiroptera Report| |1990-6471|Annual| |AFRICAN CHIROPTERA REPORT
530
531|African Development Review-Revue Africaine de Developpement|Social Sciences, general / Economische ontwikkeling; ECONOMIC CONDITIONS; ECONOMIC DEVELOPMENT; AFRICA|1017-6772|Tri-annual| |WILEY-BLACKWELL PUBLISHING
531
532|African Economic History|Economische geschiedenis|0145-2258|Annual| |UNIV WISCONSIN MADISON
532
533|African Entomology|Plant & Animal Science /|1021-3589|Semiannual| |ENTOMOLOGICAL SOC SOUTHERN AFRICA
533
534|African Entomology Memoir| |0373-4242|Irregular| |ENTOMOLOGICAL SOC SOUTHERN AFRICA
534
535|African Health Sciences|Clinical Medicine / Medicine; Medical care; Delivery of Health Care|1680-6905|Quarterly| |MAKERERE UNIV
535
536|African Herp News| |1017-6187|Tri-annual| |HERPETOLOGICAL ASSOC AFRICA
536
537|African Invertebrates|Plant & Animal Science|1681-5556|Annual| |COUNCIL NATAL MUSEUM
537
538|African Journal of Agricultural Research|Agricultural Sciences|1991-637X|Monthly| |ACADEMIC JOURNALS
538
539|African Journal of Aquatic Science|Plant & Animal Science / Limnology|1608-5914|Semiannual| |NATL INQUIRY SERVICES CENTRE PTY LTD
539
540|African Journal of Biomedical Research| |1119-5096|Semiannual| |IBADAN BIOMEDICAL COMMUNICATIONS GROUP
540
541|African Journal of Biotechnology|Biology & Biochemistry|1684-5315|Monthly| |ACADEMIC JOURNALS
541
542|African Journal of Business Management|Economics & Business|1993-8233|Monthly| |ACADEMIC JOURNALS
542
543|African Journal of Ecology|Environment/Ecology / Animal ecology; Ecology; Wildlife management|0141-6707|Quarterly| |WILEY-BLACKWELL PUBLISHING
543
544|African Journal of Environmental Assessment and Management| |1436-7890|Irregular| |AJEAM-RAGEE
544
545|African Journal of Herpetology|Plant & Animal Science /|0441-6651|Semiannual| |TAYLOR & FRANCIS LTD
545
546|African Journal of Library Archives and Information Science|Social Sciences, general|0795-4778|Semiannual| |ARCHLIB & INFORMATION SERVICES LTD
546
547|African Journal of Marine Science|Plant & Animal Science / Marine biology; Marine sciences|1814-232X|Tri-annual| |NATL INQUIRY SERVICES CENTRE PTY LTD
547
548|African Journal of Microbiology Research|Microbiology|1996-0808|Monthly| |ACADEMIC JOURNALS
548
549|African Journal of Mycology and Biotechnology| |1110-5879|Quarterly| |REGIONAL CENTER MYCOLOGY & BIOTECHNOLOGY
549
550|African Journal of Pharmacy and Pharmacology|Pharmacology & Toxicology|1996-0816|Monthly| |ACADEMIC JOURNALS
550
551|African Journal of Psychiatry|Psychiatry/Psychology|1994-8220|Quarterly| |IN HOUSE PUBLICATIONS
551
552|African Journal of Range & Forage Science|Environment/Ecology / Range management; Range plants; Grazing; Grasslands; Forage|1022-0119|Tri-annual| |NATL INQUIRY SERVICES CENTRE PTY LTD
552
553|African Journal of Traditional Complementary and Alternative Medicines| |0189-6016|Quarterly| |AFRICAN NETWORKS ETHNOMEDICINES
553
554|African Natural History|Environment/Ecology|1816-8396|Annual| |IZIKO MUSEUMS CAPE TOWN
554
555|African Plant Protection| |1023-3121|Semiannual| |AGRICULTURAL RESEARCH COUNCIL
555
556|African Primates| |1026-2865|Semiannual| |IUCN-SSC PRIMATE SPECIALIST GROUP
556
557|African Studies|Social Sciences, general / Ethnology; Indigenous peoples; African languages; Ethnologie; Autochtones; Langues africaines; POLITICAL CONDITIONS; SOCIAL CONDITIONS; ECONOMIC CONDITIONS; AFRICA|0002-0184|Tri-annual| |WITWATERSRAND UNIV PRESS
557
558|African Studies Review|Social Sciences, general / African philology; Philologie africaine|0002-0206|Tri-annual| |AFRICAN STUDIES REVIEW
558
559|African Study Monographs| |0285-1601|Irregular| |KYOTO UNIV
559
560|African Zoology|Plant & Animal Science / Animals; Zoology; Dierkunde|1562-7020|Semiannual| |ZOOLOGICAL SOC SOUTHERN AFRICA
560
561|Africana Linguistica|Social Sciences, general|0065-4124|Annual| |ROYAL MUSEUM CENTRAL AFRICA-BELGIUM
561
562|Afrika Spectrum|Social Sciences, general|0002-0397|Tri-annual| |INST AFRIKA-KUNDE
562
563|Afring News| |1817-9770|Semiannual| |UNIV CAPE TOWN
563
564|Afrotherian Conservation| | |Irregular| |IUCN-SSC AFROTHERIA SPECIALIST GROUP
564
565|Afzettingen Werkgroep Voor Tertiaire En Kwartaire Geologie| |0926-9347|Quarterly| |WERKGROEP VOOR TERTIAIRE EN KWARTAIRE GEOLOGIE
565
566|Agbioforum| |1522-936X|Quarterly| |UNIV MISSOURI
566
567|AGE|Clinical Medicine / Aging|0161-9152|Quarterly| |SPRINGER
567
568|Age and Ageing|Clinical Medicine / Geriatrics; Aging; Gériatrie; Vieillissement; Gerontologie|0002-0729|Bimonthly| |OXFORD UNIV PRESS
568
569|Ageing & Society|Social Sciences, general / Aging; Gerontology; Geriatrics; Vieillesse; Vieillissement; Personnes âgées; Gérontologie; Gerontologie|0144-686X|Bimonthly| |CAMBRIDGE UNIV PRESS
569
570|Ageing Research Reviews|Social Sciences, general / Aging; Developmental biology; Developmental Biology; Gerontologie|1568-1637|Quarterly| |ELSEVIER IRELAND LTD
570
571|Agenda|Women; Feminism|0002-0796|Quarterly| |AGENDA MAGAZINE ED CHAR TRUST
571
572|Aggression and Violent Behavior|Psychiatry/Psychology / Aggressiveness; Violence; Violent crimes; Aggression; Behavior|1359-1789|Bimonthly| |PERGAMON-ELSEVIER SCIENCE LTD
572
573|Aggressive Behavior|Psychiatry/Psychology / Aggressiveness; Violence; Psychology, Experimental; Aggression; Agressivité; Agressivité chez les animaux; Agressief gedrag|0096-140X|Bimonthly| |WILEY-LISS
573
574|Aging & Mental Health|Psychiatry/Psychology / Older people; Geriatric psychiatry; Aged; Aging; Mental Disorders; Mental Health; Mental Health Services / Older people; Geriatric psychiatry; Aged; Aging; Mental Disorders; Mental Health; Mental Health Services|1360-7863|Bimonthly| |ROUTLEDGE JOURNALS
574
575|Aging Cell|Molecular Biology & Genetics / Cells; Cell Aging; Aging|1474-9718|Bimonthly| |WILEY-BLACKWELL PUBLISHING
575
576|Aging Clinical and Experimental Research|Clinical Medicine|1594-0667|Bimonthly| |EDITRICE KURTIS S R L
576
577|Aging Male|Clinical Medicine / Aging; Older men; Men; Sex Factors|1368-5538|Quarterly| |INFORMA HEALTHCARE
577
578|Aging Neuropsychology and Cognition|Psychiatry/Psychology / Cognitive neuroscience; Cognition in old age; Older people; Neuropsychology; Aging; Cognition; Cognition Disorders; Adult; Aged; Neuropsychologie; Gerontologie; Cognitie / Cognitive neuroscience; Cognition in old age; Older people|1382-5585|Bimonthly| |PSYCHOLOGY PRESS
578
579|Aging-Us|Molecular Biology & Genetics|1945-4589|Monthly| |IMPACT JOURNALS LLC
579
580|Agora-Estudos Classicos Em Debate| |0874-5498|Annual| |UNIV AVEIRO
580
581|Agrarforschung Schweiz| |1663-7852|Monthly| |AGRARFORSCHUNG
581
582|Agraroekologie| |1421-5594|Bimonthly| |VERLAG PAUL HAUPT BERN
582
583|Agrekon|Economics & Business /|0303-1853|Quarterly| |AGRICULTURAL ECON ASSOC SOUTH AFRICA
583
584|Agribusiness|Agricultural Sciences / Agriculture; Agricultural industries; Food industry and trade; Commercial products|0742-4477|Quarterly| |JOHN WILEY & SONS INC
584
585|Agricultural and Biological Research| |0970-1907|Semiannual| |YOUNG ENVIRONMENTALIST ASSOC
585
586|Agricultural and Food Science|Agricultural Sciences / Agriculture; Food|1459-6067|Quarterly| |AGRICULTURAL RESEARCH CENTRE FINLAND
586
587|Agricultural and Forest Entomology|Plant & Animal Science / Insect pests; Agricultural pests; Forest insects|1461-9555|Quarterly| |WILEY-BLACKWELL PUBLISHING
587
588|Agricultural and Forest Meteorology|Agricultural Sciences / Crops and climate; Meteorology, Agricultural; Forest meteorology|0168-1923|Monthly| |ELSEVIER SCIENCE BV
588
589|Agricultural Chemistry and Biotechnology| |1229-2737|Bimonthly| |KOREAN SOC APPLIED BIOLOGICAL CHEMISTRY
589
590|Agricultural Economics|Economics & Business / Agriculture|0169-5150|Bimonthly| |WILEY-BLACKWELL PUBLISHING
590
591|Agricultural Economics-Zemedelska Ekonomika|Economics & Business|0139-570X|Monthly| |INST AGRICULTURAL ECONOMICS AND INFORMATION
591
592|Agricultural History|Agricultural Sciences / Agriculture; Landbouw|0002-1482|Quarterly| |UNIV CALIFORNIA PRESS
592
593|Agricultural History Review| |0002-1490|Semiannual| |BRITISH AGRICULTURAL HISTORY SOC
593
594|Agricultural Science Digest| |0253-150X|Quarterly| |AGRICULTURAL RESEARCH COMMUNICATION CENTRE
594
595|Agricultural Sciences in China|Agriculture|1671-2927|Monthly| |ELSEVIER SCI LTD
595
596|Agricultural Systems|Agricultural Sciences / Agricultural systems|0308-521X|Monthly| |ELSEVIER SCI LTD
596
597|Agricultural Water Management|Agricultural Sciences / Water in agriculture|0378-3774|Monthly| |ELSEVIER SCIENCE BV
597
598|Agriculture and Human Values|Social Sciences, general / Agriculture / Agriculture|0889-048X|Quarterly| |SPRINGER
598
599|Agriculture Ecosystems & Environment|Environment/Ecology / Agricultural ecology; Agriculture; Écologie agricole|0167-8809|Semimonthly| |ELSEVIER SCIENCE BV
599
600|Agro Food Industry Hi-Tech|Agricultural Sciences|1722-6996|Bimonthly| |TEKNOSCIENZE PUBL
600
601|Agroborealis| |0002-1822|Semiannual| |UNIV ALASKA FAIRBANKS
601
602|Agrochemicals Japan| |0919-5505|Semiannual| |JAPAN PLANT PROTECTION ASSOC
602
603|Agrochimica|Agricultural Sciences|0002-1857|Semiannual| |IST CHIMICA AGRARIA
603
604|Agrociencia|Agricultural Sciences|1405-3195|Bimonthly| |COLEGIO DE POSTGRADUADOS
604
605|Agroforestry Systems|Agricultural Sciences / Agroforestry / Agroforestry|0167-4366|Monthly| |SPRINGER
605
606|Agrokhimiya| |0002-1881|Monthly| |IZDATELSTVO NAUKA
606
607|Agronomia Costarricense| |0377-9424|Semiannual| |UNIV COSTA RICA
607
608|Agronomia Mesoamericana| |1021-7444|Semiannual| |UNIV COSTA RICA
608
609|Agronomia Tropical| |0002-192X|Quarterly| |INST NACIONAL INVESTIGACIONES AGRICOLAS-INIA
609
610|Agronomy for Sustainable Development|Agricultural Sciences /|1774-0746|Quarterly| |EDP SCIENCES S A
610
611|Agronomy Journal|Agricultural Sciences / Semigroups; Semigroepen|0002-1962|Bimonthly| |AMER SOC AGRONOMY
611
612|Agronomy Research| |1406-894X|Semiannual| |ESTONIAN AGRICULTURAL UNIV
612
613|Agronoomia| |1736-6275| | |EESTI MAAVILJELUSE INST
613
614|Ai Communications|Engineering|0921-7126|Quarterly| |IOS PRESS
614
615|Ai Edam-Artificial Intelligence for Engineering Design Analysis and Manufacturing|Engineering / Engineering design; Artificial intelligence; Expert systems (Computer science)|0890-0604|Bimonthly| |CAMBRIDGE UNIV PRESS
615
616|Ai Magazine|Engineering|0738-4602|Quarterly| |AMER ASSOC ARTIFICIAL INTELL
616
617|AIAA Journal|Engineering / Aeronautics; Astronautics; Aéronautique; Astronautique|0001-1452|Monthly| |AMER INST AERONAUT ASTRONAUT
617
618|Aibr-Revista de Antropologia Iberoamericana|Social Sciences, general|1695-9752|Tri-annual| |ASOC ANTHROPOLOGOS IBERAMERICANOS RED
618
619|AIChE Journal|Chemistry / Chemical engineering; Chemische technologie|0001-1541|Monthly| |JOHN WILEY & SONS INC
619
620|AIDS|Immunology / AIDS (Disease); Acquired Immunodeficiency Syndrome; AIDS; Sida|0269-9370|Semimonthly| |LIPPINCOTT WILLIAMS & WILKINS
620
621|AIDS and Behavior|Psychiatry/Psychology / AIDS (Disease); Health behavior; Acquired Immunodeficiency Syndrome; Behavior; Health Knowledge, Attitudes, Practice|1090-7165|Quarterly| |SPRINGER/PLENUM PUBLISHERS
621
622|Aids Care-Psychological and Socio-Medical Aspects of Aids/hiv|Social Sciences, general / AIDS (Disease); Acquired Immunodeficiency Syndrome; Social Support; Sida; Sidéens; AIDS; Psychologische aspecten; Verpleging; Sociale geneeskunde|0954-0121|Monthly| |ROUTLEDGE JOURNALS
622
623|AIDS Education and Prevention|Social Sciences, general / AIDS (Disease); Health education; Acquired Immunodeficiency Syndrome; Sida; Éducation sanitaire|0899-9546|Bimonthly| |GUILFORD PUBLICATIONS INC
623
624|AIDS PATIENT CARE and STDs|Social Sciences, general / AIDS (Disease); Sexually transmitted diseases; Acquired Immunodeficiency Syndrome; HIV Infections; Sexually Transmitted Diseases; AIDS; Seksueel overdraagbare aandoeningen; Verpleging; Sidéens; Maladies transmises sexuellement|1087-2914|Monthly| |MARY ANN LIEBERT INC
624
625|Aids Reader|Clinical Medicine|1053-0894|Monthly| |CLIGGOTT PUBLISHING CO
625
626|AIDS Research and Human Retroviruses|Immunology / AIDS (Disease); Retroviruses; HIV (Viruses); Acquired Immunodeficiency Syndrome; Retroviridae; Sida; Rétrovirus; Virus du sida; AIDS; Retrovirussen|0889-2229|Monthly| |MARY ANN LIEBERT INC
626
627|Aids Reviews|Clinical Medicine|1139-6121|Quarterly| |PERMANYER PUBL
627
628|Aims Report| |1033-6974|Annual| |AUSTRALIAN INST MARINE SCIENCE
628
629|Aircraft Engineering and Aerospace Technology|Engineering / Aeronautics|1748-8842|Bimonthly| |EMERALD GROUP PUBLISHING LIMITED
629
630|Airline Business| |0268-7615|Monthly| |REED BUSINESS INFORMATION LTD
630
631|Airo| |0871-6595|Irregular| |SOC PORTUGUESA PARA ESTUDO AVES
631
632|Ajar-African Journal of Aids Research|Clinical Medicine / Acquired Immunodeficiency Syndrome|1608-5906|Tri-annual| |NATL INQUIRY SERVICES CENTRE PTY LTD
632
633|Ajidd-American Journal on Intellectual and Developmental Disabilities|Social Sciences, general / Mental retardation; People with mental disabilities; Mental Retardation; Mentale retardatie|1944-7515|Bimonthly| |AMER ASSOC INTELLECTUAL DEVELOPMENTAL DISABILITIES
633
634|Ajs Review-The Journal of the Association for Jewish Studies|Judaism; Jews|0364-0094|Semiannual| |CAMBRIDGE UNIV PRESS
634
635|Akdeniz Universitesi Ziraat Fakultesi Dergisi| |1301-2215|Annual| |AKDENIZ UNIV
635
636|Aktuelle Neurologie|Clinical Medicine / Neurology|0302-4350|Monthly| |GEORG THIEME VERLAG KG
636
637|Aktuelle Rheumatologie|Clinical Medicine / Arthritis; Rheumatic Diseases; Spinal Diseases|0341-051X|Bimonthly| |GEORG THIEME VERLAG KG
637
638|Aktuelle Urologie|Clinical Medicine / Urology|0001-7868|Bimonthly| |GEORG THIEME VERLAG KG
638
639|Akzente-Zeitschrift fur Literatur| |0002-3957|Bimonthly| |CARL HANSER VERLAG
639
640|Al Gologiya| |0868-8540|Quarterly| |N G KHOLODNY INST BOTANY
640
641|Al-Basit| |0212-8632|Semiannual| |INST ESTUDIOS ALBACETENSES
641
642|Al-Qantara| |0211-3589|Irregular| |CONSEJO SUPERIOR DE INVESTIGACIONES CIENTIFICAS
642
643|Alaska Department of Fish and Game Division of Subsistence Technical Report| | |Irregular| |ALASKA DEPT FISH GAME
643
644|Alaska Department of Fish and Game Division of Wildlife Conservation Federal Aid in Wildlife Restoration Annual Research Performance Report| | |Irregular| |ALASKA DEPT FISH GAME
644
645|Alaska Department of Fish and Game Division of Wildlife Conservation Federal Aid in Wildlife Restoration Survey-Inventory Management Report| | |Irregular| |ALASKA DEPT FISH GAME
645
646|Alaska Department of Fish and Game Research Final Report Survey-Inventory Activities| | |Irregular| |ALASKA DEPT FISH GAME
646
647|Alaska Fishery Research Bulletin| |1091-7306|Semiannual| |ALASKA DEPT FISH GAME
647
648|Alauda| |0002-4619|Quarterly| |SOC ETUDES ORNITHOLOGIQUES FRANCE
648
649|Alavesia| |1887-7419|Annual| |INT PALAEOENTOMOLOGICAL SOC-IPS
649
650|Alberta Species at Risk Report| |1496-7219|Irregular| |ALBERTA SUSTAINABLE RESOURCE DEVELOPMENT
650
651|Albertiana| |0169-4324|Semiannual| |ALBERTIANA
651
652|Albertine Rift Technical Reports Series| |1543-4109|Irregular| |WILDLIFE CONSERVATION SOC
652
653|Albolafia| |1886-2985|Irregular| |SOC ANDALUZA ENTOMOLOGIA
653
654|Alces| |0835-5851|Annual| |LAKEHEAD UNIV BOOKSTORE
654
655|Alcheringa|Geosciences / Paleontology|0311-5518|Quarterly| |TAYLOR & FRANCIS LTD
655
656|Alcohol|Neuroscience & Behavior / Alcohol; Alcoholism; Ethanol; Alcool; Alcoolisme|0741-8329|Monthly| |ELSEVIER SCIENCE INC
656
657|Alcohol and Alcoholism|Clinical Medicine / Alcoholism; Ethanol; Alcoolisme|0735-0414|Bimonthly| |OXFORD UNIV PRESS
657
658|Alcohol Research & Health|Clinical Medicine|1535-7414|Quarterly| |NATL INST ALCOHOL ABUSE ALCOHOLISM
658
659|Alcoholism-Clinical and Experimental Research|Clinical Medicine / Alcoholism; Alcoolisme; Alcohol; Alcoholvergiftiging; Alcoholisme|0145-6008|Monthly| |WILEY-BLACKWELL PUBLISHING
659
660|Alcoholism-Zagreb| |0002-502X|Semiannual| |CENTER STUDY & CONTROL ALCOHOLISM & ADDICTIONS
660
661|Aldrichimica Acta|Chemistry|0002-5100|Tri-annual| |ALDRICH CHEMICAL CO INC
661
662|Aldrovandia| |1825-2613|Monthly| |MUSEO CIVICO ZOOLOGIA ROMA
662
663|Alea-Estudos Neolatinos|Romance literature; Romance languages|1517-106X|Semiannual| |UNIV FED RIO DE JANEIRO
663
664|Aleph-Historical Studies in Science & Judaism|Judaism and science; Religion and Science; Science; Judaism|1565-1525|Annual| |INDIANA UNIV PRESS
664
665|ALGAE| |1226-2617|Bimonthly| |KOREAN SOC PHYCOLOGY
665
666|Algebra & Number Theory|Mathematics /|1937-0652|Quarterly| |MATHEMATICAL SCIENCE PUBL
666
667|Algebra and Logic|Algebraic logic; Algebra; Logic, Symbolic and mathematical; Logica|0002-5232|Bimonthly| |SPRINGER
667
668|Algebra Colloquium|Mathematics / Algebra|1005-3867|Quarterly| |WORLD SCIENTIFIC PUBL CO PTE LTD
668
669|Algebra Universalis|Mathematics / Algebra, Universal; Lattice theory; Algèbre universelle; Treillis, Théorie des|0002-5240|Bimonthly| |BIRKHAUSER VERLAG AG
669
670|Algebraic and Geometric Topology|Mathematics / Algebraic topology; Topology; Topologie algébrique; Topologie|1472-2739|Irregular| |GEOMETRY & TOPOLOGY PUBLICATIONS
670
671|Algebras and Representation Theory|Mathematics / Rings (Algebra); Representations of algebras; Representations of rings (Algebra); Algebra; Representatie (wiskunde) / Rings (Algebra); Representations of algebras; Representations of rings (Algebra); Algebra; Representatie (wiskunde)|1386-923X|Bimonthly| |SPRINGER
671
672|Algological Studies| |1864-1318|Quarterly| |E. SCHWEIZERBART SCIENCE PUBLISHERS
672
673|Algorithmica|Engineering / Electronic data processing; Computer algorithms|0178-4617|Monthly| |SPRINGER
673
674|Algorithms for Molecular Biology|Molecular Biology & Genetics / Molecular Biology; Algorithms|1748-7188|Irregular| |BIOMED CENTRAL LTD
674
675|Aliens-Auckland| |1173-5988|Semiannual| |INVASIVE SPECIES SPECIALIST GROUP
675
676|Alimentaria| |0300-5755|Monthly| |EDICIONES PUBLICACIONES ALIMENTARIAS S A
676
677|Alimentary Pharmacology & Therapeutics|Clinical Medicine / Digestive organs; Gastrointestinal system; Alimentary canal; Pharmacology; Digestive System Diseases; Therapeutics; Appareil digestif; Appareil digestif, Effets des médicaments sur l'; Tractus gastro-intestinal; Tractus gastro-intesti|0269-2813|Semimonthly| |WILEY-BLACKWELL PUBLISHING
677
678|Alimentary Pharmacology & Therapeutics Symposium Series|Pharmacology & Toxicology / Digestive organs; Gastrointestinal system; Alimentary canal; Pharmacology; Digestive System; Digestive System Diseases; Appareil digestif; Appareil digestif, Effets des médicaments sur l'; Tractus gastro-intestinal; Tractus ga|1746-6334|Irregular| |WILEY-BLACKWELL PUBLISHING
678
679|Aliso| |0065-6275|Quarterly| |RANCHO SANTA ANA BOTANIC GARDEN
679
680|Allattani Kozlemenyek| |0002-5658|Annual| |MAGYAR BIOLOGIAI TARSASAG
680
681|Allelopathy Journal|Plant & Animal Science|0971-4693|Quarterly| |ALLELOPATHY JOURNAL
681
682|Allergologia et Immunopathologia|Clinical Medicine / Allergy and Immunology; Hypersensitivity|0301-0546|Bimonthly| |ELSEVIER DOYMA SL
682
683|Allergologie|Clinical Medicine|0344-5062|Monthly| |DUSTRI-VERLAG DR KARL FEISTLE
683
684|Allergology International|Allergy; Allergy and Immunology; Hypersensitivity|1323-8930|Quarterly| |WILEY-BLACKWELL PUBLISHING
684
685|Allergy|Immunology / Allergy; Hypersensitivity; Allergie; Hypersensibilité (Immunologie); Hypersensibilité immédiate; Immunologie / Allergy; Hypersensitivity; Allergie; Hypersensibilité (Immunologie); Hypersensibilité immédiate; Immunologie|0105-4538|Monthly| |WILEY-BLACKWELL PUBLISHING
685
686|Allergy & Clinical Immunology International-Journal of the World Allergy Organization|Clinical Medicine / Allergy; Immunology; Allergie; Immunologie; Hypersensitivity; Immunity|0838-1925|Bimonthly| |HOGREFE & HUBER PUBLISHERS
686
687|Allergy and Asthma Proceedings|Clinical Medicine / Allergy; Immunology; Respiratory allergy; Asthma; Allergy and Immunology; Hypersensitivity|1088-5412|Bimonthly| |OCEAN SIDE PUBLICATIONS INC
687
688|Allertonia| |0735-8032|Irregular| |NATL TROPICAL BOTANICAL GARDEN
688
689|Allgemeine Forst und Jagdzeitung|Plant & Animal Science|0002-5852|Monthly| |J D SAUERLANDERS VERLAG
689
690|Allgemeine Zeitschrift fur Philosophie| |0340-7969|Tri-annual| |FROMMANN-HOLZBOOG
690
691|Allgemeine Zeitschrift fur Psychiatrie und Ihre Grenzgebiete| |0365-8570| | |WALTER DE GRUYTER & CO
691
692|Allgemeine Zeitschrift fur Psychiatrie und Psychisch-Gerichtliche Medizin| |0933-6451| | |WALTER DE GRUYTER & CO
692
693|Allionia-Turin| |0065-6429|Annual| |UNIV TORINO
693
694|Almoraima| |1133-5319|Irregular| |INST ESTUDIOS CAMPOGIBRALTARENOS
694
695|Alpha-Revista de Artes Letras Y Filosofia| |0716-4254|Semiannual| |UNIV LOS LAGOS
695
696|Altaiskii Zoologicheskii Zhurnal| | |Irregular| |ALTAISKII ZOOLOGICHESKII TSENTR
696
697|Altenburger Naturwissenschaftliche Forschungen| |0232-5381|Irregular| |MAURITIANUM
697
698|Alternative & Complementary Therapies|Alternative medicine; Complementary Therapies|1076-2809|Bimonthly| |MARY ANN LIEBERT INC
698
699|Alternative Medicine Review|Clinical Medicine|1089-5159|Quarterly| |THORNE RESEARCH
699
700|Alternative Therapies in Health and Medicine|Clinical Medicine|1078-6791|Bimonthly| |INNOVISION COMMUNICATIONS
700
701|Alternatives|Social Sciences, general|0304-3754|Quarterly| |LYNNE RIENNER PUBL INC
701
702|Alterra Scientific Contributions| | |Irregular| |ALTERRA
702
703|Alterra-Rapport| |1566-7197|Irregular| |ALTERRA
703
704|Altex-Alternativen zu Tierexperimenten|Clinical Medicine|0946-7785|Quarterly| |SPEKTRUM AKAD VERLAG
704
705|Alula-Roma| |1126-8468|Irregular| |S R O P U
705
706|Alytes| |0753-4973|Quarterly| |INT SOC STUDY & CONSERVATION AMPHIBIANS-ISSCA
706
707|Alzheimer Disease & Associated Disorders|Neuroscience & Behavior / Alzheimer's disease; Presenile dementia; Alzheimer Disease / Alzheimer's disease; Presenile dementia; Alzheimer Disease|0893-0341|Quarterly| |LIPPINCOTT WILLIAMS & WILKINS
707
708|Alzheimers & Dementia|Clinical Medicine / Alzheimer's disease; Dementia / Alzheimer's disease; Dementia|1552-5260|Quarterly| |ELSEVIER SCIENCE INC
708
709|Ama-Agricultural Mechanization in Asia Africa and Latin America|Agricultural Sciences|0084-5841|Quarterly| |FARM MACHINERY INDUSTRIAL RESEARCH CORP
709
710|Amazonas| |1861-2202|Bimonthly| |NATUR TIER - VERLAG
710
711|Amba Projekty| | |Irregular| |AMBA PROJEKTY
711
712|AMBIO|Environment/Ecology / Pollution; Air Pollution; Environment; Environmental Health; Water Pollution|0044-7447|Bimonthly| |SPRINGER
712
713|Ambio Special Report| |0301-0325|Irregular| |ROYAL SWEDISH ACAD SCIENCES
713
714|Ambix|Chemistry; Alchemy; Alchemie; Chemie|0002-6980|Tri-annual| |MANEY PUBLISHING
714
715|Ameghiniana|Geosciences|0002-7014|Quarterly| |ASOCIACION PALEONTOLOGICA ARGENTINA
715
716|Amemboa| |1028-2831|Irregular| |NATURHISTORISCHES MUSEUM WIEN
716
717|Amerasia Journal| |0044-7471|Tri-annual| |ASIAN AMER STUDIES CNTR
717
718|American Annals of the Deaf|Social Sciences, general /|0002-726X|Bimonthly| |GALLAUDET UNIV PRESS
718
719|American Anthropologist|Social Sciences, general / Anthropology; Anthropologie; Culturele antropologie; Antropologen|0002-7294|Quarterly| |WILEY-BLACKWELL PUBLISHING
719
720|American Antiquity|Archaeology; Archéologie; Archeologie|0002-7316|Quarterly| |SOC AMER ARCHAEOLOGY
720
721|American Archivist| |0360-9081|Quarterly| |SOC AMER ARCHIVISTS
721
722|American Art|Art, American|1073-9300|Quarterly| |UNIV CHICAGO PRESS
722
723|American Bankruptcy Law Journal|Social Sciences, general|0027-9048|Quarterly| |NATL CONF BANKRUPT J
723
724|American Bee Journal|Plant & Animal Science|0002-7626|Monthly| |DADANT & SONS INC
724
725|American Behavioral Scientist|Psychiatry/Psychology / Political science; Social sciences; Science politique; Sciences sociales; Gedragswetenschappen|0002-7642|Monthly| |SAGE PUBLICATIONS INC
725
726|American Biology Teacher|Biology & Biochemistry / Biology; Biologie|0002-7685|Monthly| |NATL ASSOC BIOLOGY TEACHERS INC
726
727|American Biotechnology Laboratory| |1028-2831|Monthly| |INT SCIENTIFIC COMMUN INC
727
728|American Birds-Christmas Bird Count| |0004-7686|Annual| |NATL AUDUBON SOC
728
729|American Book Publishing Record| |0002-7707|Monthly| |R R BOWKER
729
730|American Book Review| |0149-9408|Bimonthly| |UNIV HOUSTON
730
731|American Business Law Journal|Social Sciences, general / Commercial law|0002-7766|Quarterly| |WILEY-BLACKWELL PUBLISHING
731
732|American Butterflies| |1087-450X|Quarterly| |NORTH AMER BUTTERFLY ASSOC
732
733|American Catholic Philosophical Quarterly| |1051-3558|Quarterly| |AMER CATHOLIC PHILOSOPHICAL ASSOC
733
734|American Ceramic Society Bulletin|Materials Science|0002-7812|Monthly| |AMER CERAMIC SOC
734
735|American Conchologist| |1072-2440|Quarterly| |CONCHOLOGISTS AMER
735
736|American Criminal Law Review|Social Sciences, general|0164-0364|Quarterly| |AMER CRIMINAL LAW REVIEW
736
737|American Economic Review|Economics & Business / Economics; Economie; Économie politique; ECONOMICS / Economics; Economie; Économie politique; ECONOMICS|0002-8282|Bimonthly| |AMER ECONOMIC ASSOC
737
738|American Educational Research Journal|Social Sciences, general / Education; Onderwijs; Éducation|0002-8312|Quarterly| |SAGE PUBLICATIONS INC
738
739|American Entomologist| |1046-2821|Quarterly| |ENTOMOLOGICAL SOC AMER
739
740|American Ethnologist|Social Sciences, general / Ethnology|0094-0496|Quarterly| |WILEY-BLACKWELL PUBLISHING
740
741|American Family Physician|Clinical Medicine|0002-838X|Monthly| |AMER ACAD FAMILY PHYSICIANS
741
742|American Fern Journal|Plant & Animal Science / Ferns; Fougères|0002-8444|Quarterly| |AMER FERN SOC INC
742
743|American Fisheries Society Annual Meeting| | |Annual| |AMER FISHERIES SOC
743
744|American Heart Journal|Clinical Medicine / Heart; Blood Circulation; Cardiology; Sang; Cardiologie; Coeur|0002-8703|Monthly| |MOSBY-ELSEVIER
744
745|American Heritage| |0002-8738|Bimonthly| |AMER HERITAGE SUBSCRIPTION DEPT
745
746|American Historical Review|History; HISTORIA|0002-8762|Bimonthly| |UNIV CHICAGO PRESS
746
747|American History| |1076-8866|Bimonthly| |WEIDER HIST GRP INC
747
748|American Imago| |0065-860X|Quarterly| |JOHNS HOPKINS UNIV PRESS
748
749|American Indian and Alaska Native Mental Health Research|Psychiatry/Psychology|0893-5394|Tri-annual| |UNIVERSITY PRESS COLORADO
749
750|American Indian Culture and Research Journal| |0161-6463|Quarterly| |U C L A
750
751|American Jewish History| |0164-0178|Quarterly| |JOHNS HOPKINS UNIV PRESS
751
752|American Journal of Agricultural and Biological Sciences| |1557-4989| | |SCIENCE PUBLICATIONS
752
753|American Journal of Agricultural Economics|Economics & Business /|0002-9092|Bimonthly| |OXFORD UNIV PRESS INC
753
754|American Journal of Alzheimers Disease and Other Dementias|Clinical Medicine / Alzheimer's disease; Dementia; Alzheimer, Maladie d'; Démence; Alzheimer Disease|1533-3175|Bimonthly| |SAGE PUBLICATIONS INC
754
755|American Journal of Anatomy|Anatomy; Anatomie; Proefdieren|0002-9106|Monthly| |WILEY-LISS
755
756|American Journal of Animal and Veterinary Sciences| |1557-4555| | |SCIENCE PUBLICATIONS
756
757|American Journal of Archaeology|Archaeology; Art; Archéologie|0002-9114|Quarterly| |ARCHAEOLOGICAL INST AMERICA
757
758|American Journal of Bioethics|Social Sciences, general / Medical ethics; Bioethics; Neurosciences|1526-5161|Monthly| |ROUTLEDGE JOURNALS
758
759|American Journal of Botany|Plant & Animal Science / Botany; Plantkunde; Botanique|0002-9122|Monthly| |BOTANICAL SOC AMER INC
759
760|American Journal of Cardiac Imaging| |0887-7971|Quarterly| |GRUNE & STRATTON LTD
760
761|American Journal of Cardiology|Clinical Medicine / Cardiovascular system; Cardiology; Cardiologie|0002-9149|Semimonthly| |EXCERPTA MEDICA INC-ELSEVIER SCIENCE INC
761
762|American Journal of Cardiovascular Drugs|Pharmacology & Toxicology / Cardiovascular agents; Cardiovascular Agents; Cardiology; Cardiovascular Diseases; Heart Diseases|1175-3277|Bimonthly| |ADIS INT LTD
762
763|American Journal of Chinese Medicine|Clinical Medicine / Medicine, Chinese; Medicine; Acupuncture Therapy; Medicine, Herbal; Medicine, Oriental Traditional|0192-415X|Bimonthly| |WORLD SCIENTIFIC PUBL CO PTE LTD
763
764|American Journal of Clinical Dermatology|Clinical Medicine / Skin; Skin Diseases; Cosmetic Techniques; Dermatologic Agents|1175-0561|Bimonthly| |ADIS INT LTD
764
765|American Journal of Clinical Hypnosis|Psychiatry/Psychology|0002-9157|Tri-annual| |AMER SOC CLINICAL HYPNOSIS
765
766|American Journal of Clinical Nutrition|Clinical Medicine / Nutrition; Diet in disease; Diet; Voeding|0002-9165|Monthly| |AMER SOC CLINICAL NUTRITION
766
767|American Journal of Clinical Oncology-Cancer Clinical Trials|Clinical Medicine / Cancer; Oncology; Neoplasms / Cancer; Oncology; Neoplasms / Cancer; Oncology; Neoplasms|0277-3732|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
767
768|American Journal of Clinical Pathology|Clinical Medicine / Diagnosis, Laboratory; Pathology; Klinische pathologie; Klinische geneeskunde; Pathologie; Diagnostics biologiques|0002-9173|Monthly| |AMER SOC CLINICAL PATHOLOGY
768
769|American Journal of Community Psychology|Psychiatry/Psychology / Community psychology; Community Mental Health Services; Community Psychiatry|0091-0562|Bimonthly| |SPRINGER/PLENUM PUBLISHERS
769
770|American Journal of Comparative Law|Social Sciences, general / Comparative law; Droit comparé|0002-919X|Quarterly| |AMER SOC COMPARATIVE LAW INC
770
771|American Journal of Critical Care|Clinical Medicine /|1062-3264|Bimonthly| |AMER ASSOC CRITICAL CARE NURSES
771
772|American Journal of Dentistry|Clinical Medicine|0894-8275|Bimonthly| |MOSHER & LINDER
772
773|American Journal of Dermatopathology|Clinical Medicine / Skin; Histology, Pathological; Skin Diseases / Skin; Histology, Pathological; Skin Diseases|0193-1091|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
773
774|American Journal of Diseases of Children| |0096-8994|Monthly| |AMER MEDICAL ASSOC
774
775|American Journal of Drug and Alcohol Abuse|Social Sciences, general / Drug abuse; Alcoholism; Substance-Related Disorders; Alcoholisme; Drugsverslaving|0095-2990|Quarterly| |TAYLOR & FRANCIS INC
775
776|American Journal of Economics and Sociology|Social Sciences, general / Social sciences; Sciences sociales|0002-9246|Quarterly| |WILEY-BLACKWELL PUBLISHING
776
777|American Journal of Education|Social Sciences, general / Education; Onderwijs|0195-6744|Quarterly| |UNIV CHICAGO PRESS
777
778|American Journal of Emergency Medicine|Clinical Medicine / Emergency medicine; Emergency Medicine / Emergency medicine; Emergency Medicine|0735-6757|Bimonthly| |W B SAUNDERS CO-ELSEVIER INC
778
779|American Journal of Enology and Viticulture|Agricultural Sciences|0002-9254|Quarterly| |AMER SOC ENOLOGY VITICULTURE
779
780|American Journal of Environmental Sciences| |1553-345X|Quarterly| |SCIENCE PUBLICATIONS
780
781|American Journal of Epidemiology|Clinical Medicine / Epidemiology; Public health; Public Health; Preventieve geneeskunde; Épidémiologie; Santé publique; Méthodologie de recherche|0002-9262|Semimonthly| |OXFORD UNIV PRESS INC
781
782|American Journal of Evaluation|Social Sciences, general / Social sciences; Evaluation research (Social action programs); Educational accountability / Social sciences; Evaluation research (Social action programs); Educational accountability|1098-2140|Quarterly| |SAGE PUBLICATIONS INC
782
783|American Journal of Family Therapy|Psychiatry/Psychology / Family psychotherapy; Family; Family Therapy; Marital Therapy; Gezinstherapie; Thérapie familiale; Thérapie conjugale; Famille / Family psychotherapy; Family; Family Therapy; Marital Therapy; Gezinstherapie; Thérapie familiale; Th|0192-6187|Quarterly| |ROUTLEDGE JOURNALS
783
784|American Journal of Forensic Medicine and Pathology|Clinical Medicine / Medical jurisprudence; Forensic pathology; Forensic Medicine; Pathology / Medical jurisprudence; Forensic pathology; Forensic Medicine; Pathology|0195-7910|Quarterly| |LIPPINCOTT WILLIAMS & WILKINS
784
785|American Journal of Gastroenterology|Clinical Medicine / Stomach; Intestines; Gastroenterology; Intestins; Appareil digestif; Gastro-enterologie|0002-9270|Monthly| |NATURE PUBLISHING GROUP
785
786|American Journal of Geriatric Cardiology|Clinical Medicine / Cardiovascular Diseases; Aged|1076-7460|Bimonthly| |LE JACQ LTD
786
787|American Journal of Geriatric Pharmacotherapy|Pharmacology & Toxicology / Geriatric pharmacology; Drug Therapy; Geriatrics; Aged|1543-5946|Bimonthly| |EXCERPTA MEDICA INC-ELSEVIER SCIENCE INC
787
788|American Journal of Geriatric Psychiatry|Psychiatry/Psychology / Geriatric psychiatry; Mental Disorders; Aged; Psychogeriatrie|1064-7481|Bimonthly| |LIPPINCOTT WILLIAMS & WILKINS
788
789|American Journal of Health Behavior|Social Sciences, general|1087-3244|Bimonthly| |PNG PUBLICATIONS
789
790|American Journal of Health Promotion|Social Sciences, general /|0890-1171|Bimonthly| |AMER JOURNAL HEALTH PROMOTION INC
790
791|American Journal of Health-System Pharmacy|Clinical Medicine / Hospital pharmacies; Drug Therapy; Pharmaceutical Preparations; Pharmacy Service, Hospital; Pharmacies d'hôpital; Farmacie|1079-2082|Semimonthly| |AMER SOC HEALTH-SYSTEM PHARMACISTS
791
792|American Journal of Hematology|Clinical Medicine / Hematology; Hematologie|0361-8609|Monthly| |WILEY-LISS
792
793|American Journal of Hospice & Palliative Medicine|Clinical Medicine / Hospice care; Terminal care; Hospices; Palliative Care; Terminal Care; Soins en phase terminale; Soins palliatifs|1049-9091|Bimonthly| |SAGE PUBLICATIONS INC
793
794|American Journal of Human Biology|Clinical Medicine / Human biology; Physical anthropology; Biology|1042-0533|Bimonthly| |WILEY-LISS
794
795|American Journal of Human Genetics|Molecular Biology & Genetics / Human genetics; Medical genetics; Genetics; Genetica; Génétique humaine; Génétique médicale|0002-9297|Monthly| |CELL PRESS
795
796|American Journal of Hygiene| |0096-5294|Bimonthly| |AMER J EPIDEMIOLOGY
796
797|American Journal of Hygiene-Monographic Series| | | | |AMER J EPIDEMIOLOGY
797
798|American Journal of Hypertension|Clinical Medicine / Hypertension; Hypertension artérielle|0895-7061|Monthly| |NATURE PUBLISHING GROUP
798
799|American Journal of Industrial Medicine|Clinical Medicine / Medicine, Industrial; Occupational Medicine; Médecine du travail|0271-3586|Monthly| |WILEY-LISS
799
800|American Journal of Infection Control|Clinical Medicine / Health facilities; Nosocomial infections; Asepsis and antisepsis; Cross Infection; Ziekenhuisinfecties; Preventie|0196-6553|Monthly| |MOSBY-ELSEVIER
800
801|American Journal of Insanity| |1044-4815| | |AMER PSYCHIATRIC PUBLISHING
801
802|American Journal of International Law|Social Sciences, general / International law; International relations|0002-9300|Quarterly| |AMER SOC INT LAW
802
803|American Journal of Kidney Diseases|Clinical Medicine / Kidneys; Kidney Diseases|0272-6386|Monthly| |W B SAUNDERS CO-ELSEVIER INC
803
804|American Journal of Law & Medicine|Social Sciences, general|0098-8588|Tri-annual| |AMER SOC LAW MEDICINE ETHICS
804
805|American Journal of Managed Care|Clinical Medicine|1088-0224|Monthly| |MANAGED CARE & HEALTHCARE COMMUNICATIONS LLC
805
806|American Journal of Mathematics|Mathematics / Mathematics; Wiskunde; Mathématiques|0002-9327|Bimonthly| |JOHNS HOPKINS UNIV PRESS
806
807|American Journal of Medical Genetics Part A|Molecular Biology & Genetics / Medical genetics; Genetics, Medical; Medische genetica|1552-4825|Semimonthly| |WILEY-LISS
807
808|American Journal of Medical Genetics Part B-Neuropsychiatric Genetics|Molecular Biology & Genetics / Neuropsychiatry; Medical genetics; Nervous System Diseases; Genetics, Medical|1552-4841|Bimonthly| |WILEY-LISS
808
809|American Journal of Medical Genetics Part C-Seminars in Medical Genetics|Molecular Biology & Genetics / Medical genetics|1552-4868|Quarterly| |WILEY-LISS
809
810|American Journal of Medical Quality|Clinical Medicine / Medical care; Cost Control; Quality Assurance, Health Care; Quality of Health Care; Utilization Review|1062-8606|Bimonthly| |SAGE PUBLICATIONS INC
810
811|American Journal of Medicine|Clinical Medicine / Medicine; Médecine; Geneeskunde|0002-9343|Monthly| |ELSEVIER SCIENCE INC
811
812|American Journal of Mens Health|Clinical Medicine / Men; Sex factors in disease; Health; Sex Factors|1557-9883|Quarterly| |SAGE PUBLICATIONS INC
812
813|American Journal of Mental Deficiency| |0002-9351|Bimonthly| |AMER ASSOC MENTAL RETARDATION
813
814|American Journal of Nephrology|Clinical Medicine / Nephrology; Néphrologie; Nefrologie|0250-8095|Bimonthly| |KARGER
814
815|American Journal of Neuroradiology|Clinical Medicine / Nervous system; Diagnosis, Radioscopic; Nervous System; Neuroradiography; Neurologie; Radiologie|0195-6108|Monthly| |AMER SOC NEURORADIOLOGY
815
816|American Journal of Nursing|Social Sciences, general / Nursing|0002-936X|Monthly| |LIPPINCOTT WILLIAMS & WILKINS
816
817|American Journal of Obstetrics and Gynecology|Clinical Medicine / Obstetrics; Gynecology; Gynécologie; Obstétrique; Verloskunde; Gynaecologie|0002-9378|Monthly| |MOSBY-ELSEVIER
817
818|American Journal of Occupational Therapy|Social Sciences, general /|0272-9490|Bimonthly| |AMER OCCUPATIONAL THERAPY ASSOC
818
819|American Journal of Ophthalmology|Clinical Medicine / Ophthalmology; Ophtalmologie; Oogheelkunde|0002-9394|Monthly| |ELSEVIER SCIENCE INC
819
820|American Journal of Orthodontics and Dentofacial Orthopedics|Clinical Medicine / Orthodontics; Orthodontie|0889-5406|Monthly| |MOSBY-ELSEVIER
820
821|American Journal of Orthopsychiatry|Psychiatry/Psychology / Orthopsychiatry; Child Psychiatry; Child Psychology; Mental Health; Psychiatrie; Orthopsychiatrie|0002-9432|Quarterly| |AMER PSYCHOLOGICAL ASSOC
821
822|American Journal of Otolaryngology|Clinical Medicine / Otolaryngology; Otorhinolaryngologic Diseases|0196-0709|Bimonthly| |W B SAUNDERS CO-ELSEVIER INC
822
823|American Journal Of Pathology|Clinical Medicine / Pathology; Pathologie; Geneeskunde|0002-9440|Monthly| |AMER SOC INVESTIGATIVE PATHOLOGY
823
824|American Journal of Perinatology|Clinical Medicine / Perinatology; Obstetrics; Kindergeneeskunde; Gynaecologie|0735-1631|Monthly| |THIEME MEDICAL PUBL INC
824
825|American Journal of Pharmaceutical Education|Pharmacology & Toxicology|0002-9459|Bimonthly| |AMER ASSOC COLL PHARMACY
825
826|American Journal of Philology|Philology; Classical philology; Philologie; Philologie ancienne|0002-9475|Quarterly| |JOHNS HOPKINS UNIV PRESS
826
827|American Journal of Physical Anthropology|Biology & Biochemistry / Physical anthropology; Anthropology; Anthropologie physique; Fysische antropologie|0002-9483|Monthly| |WILEY-LISS
827
828|American Journal of Physical Anthropology-New Series| | |Quarterly| |WILEY-LISS
828
829|American Journal of Physical Medicine & Rehabilitation|Clinical Medicine / Medicine, Physical; Rehabilitation; Physical Medicine; Fysiotherapie; Revalidatie; Réadaptation; Ergothérapie; Physiothérapie|0894-9115|Monthly| |LIPPINCOTT WILLIAMS & WILKINS
829
830|American Journal of Physics|Physics / Physics; Physique; Natuurkunde|0002-9505|Monthly| |AMER ASSOC PHYSICS TEACHERS AMER INST PHYSICS
830
831|American Journal of Physiology| |0002-9513|Monthly| |AMER PHYSIOLOGICAL SOC
831
832|American Journal of Physiology-Cell Physiology|Molecular Biology & Genetics / Cell physiology; Cell Physiology|0363-6143|Monthly| |AMER PHYSIOLOGICAL SOC
832
833|American Journal of Physiology-Endocrinology and Metabolism|Biology & Biochemistry / Endocrinology; Metabolism; Endocrine Diseases; Metabolic Diseases|0193-1849|Monthly| |AMER PHYSIOLOGICAL SOC
833
834|American Journal of Physiology-Gastrointestinal and Liver Physiology|Clinical Medicine / Gastroenterology; Liver; Gastrointestinal System; Gastroentérologie; Foie|0193-1857|Monthly| |AMER PHYSIOLOGICAL SOC
834
835|American Journal of Physiology-Heart and Circulatory Physiology|Clinical Medicine / Cardiovascular system; Blood; Lymph; Cardiovascular Physiology|0363-6135|Monthly| |AMER PHYSIOLOGICAL SOC
835
836|American Journal of Physiology-Lung Cellular and Molecular Physiology|Clinical Medicine / Lungs; Lung|1040-0605|Monthly| |AMER PHYSIOLOGICAL SOC
836
837|American Journal of Physiology-Regulatory Integrative and Comparative Physiology|Biology & Biochemistry / Physiology, Comparative; Biological control systems; Physiological Processes; Homeostasis|0363-6119|Monthly| |AMER PHYSIOLOGICAL SOC
837
838|American Journal of Physiology-Renal Physiology|Clinical Medicine|1931-857X|Monthly| |AMER PHYSIOLOGICAL SOC
838
839|American Journal of Political Science|Social Sciences, general / Political science; Science politique|0092-5853|Quarterly| |WILEY-BLACKWELL PUBLISHING
839
840|American Journal of Potato Research|Agricultural Sciences /|1099-209X|Bimonthly| |SPRINGER
840
841|American Journal of Preventive Medicine|Clinical Medicine / Medicine, Preventive; Public health; Health promotion; Preventive Medicine; Médecine préventive; Santé publique; Promotion de la santé|0749-3797|Monthly| |ELSEVIER SCIENCE INC
841
842|American Journal of Primatology|Plant & Animal Science / Primates; Primaten|0275-2565|Monthly| |WILEY-LISS
842
843|American Journal of Psychiatry|Psychiatry/Psychology / Psychiatry|0002-953X|Monthly| |AMER PSYCHIATRIC PUBLISHING
843
844|American Journal of Psychology|Psychiatry/Psychology / Psychology; Psychologie|0002-9556|Quarterly| |UNIV ILLINOIS PRESS
844
845|American Journal of Psychotherapy|Psychiatry/Psychology|0002-9564|Quarterly| |ASSOC ADVANCEMENT PSYCHOTHERAPY
845
846|American Journal of Public Health|Clinical Medicine / Public health; Public Health; Gezondheidszorg|0090-0036|Monthly| |AMER PUBLIC HEALTH ASSOC INC
846
847|American Journal of Public Health and the Nations Health| | |Monthly| |AMER PUBLIC HEALTH ASSOC INC
847
848|American Journal of Public Hygiene| |0272-2313| | |AMER PUBLIC HEALTH ASSOC INC
848
849|American Journal of Public Hygiene and Journal of the Massachusetts Association of Boards of Health| | | | |AMER PUBLIC HEALTH ASSOC INC
849
850|American Journal Of Reproductive Immunology|Immunology / Human reproduction; Reproduction; Generative organs; Immunology; Microbiology; Allergy and Immunology|1046-7408|Monthly| |WILEY-BLACKWELL PUBLISHING
850
851|American Journal of Respiratory and Critical Care Medicine|Clinical Medicine / Respiratory organs; Critical care medicine; Respiratory intensive care; Critical Care; Respiratory Tract Diseases|1073-449X|Semimonthly| |AMER THORACIC SOC
851
852|American Journal of Respiratory Cell and Molecular Biology|Clinical Medicine / Lungs; Cell respiration; Molecular biology; Lung; Molecular Biology|1044-1549|Monthly| |AMER THORACIC SOC
852
853|American Journal of Rhinology & Allergy|Clinical Medicine /|1945-8924|Bimonthly| |OCEAN SIDE PUBLICATIONS INC
853
854|American Journal of Roentgenology|Clinical Medicine / Radiology, Medical; Neoplasms; Nuclear Medicine; Radiography; Radiology; Radiologie médicale|0361-803X|Monthly| |AMER ROENTGEN RAY SOC
854
855|American Journal of Roentgenology and Radium Therapy| |0092-5632|Monthly| |AMER ROENTGEN RAY SOC
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff