In [18]:
import requests
from scrapy.http import TextResponse
import re
import csv
import collections
import sys
In [34]:
def strip_text(data):
#return a list from an html string of the html tags
p = re.compile('<.*?>')
return p.findall(data)
def strip_tags(data):
#strips tags from an html string.
p = re.compile('<.*?>')
return p.sub("",data)
def strip_meta(tags):
#strips metadata (classes, attributes etc) from list of html tags
cleantags = [];
p = re.compile("""\A\<[a-z | A-Z]*\ """)
for tag in tags:
if (tag[1]=="!"):
pass
else:
new_tag = p.findall(tag)
if new_tag==[]: cleantags.append(tag)
else: cleantags.append(new_tag[0][:-1]+">")
return cleantags
def sanitise(raw_tags,codex):
#take tags and replace by an string character alphabet. codex is "tags4"
reader = csv.reader(open(codex, 'rb'))
tag_dict= dict((x[0],x[1]) for x in reader)
sanitised_list = []
for item in raw_tags:
try:
sanitised = tag_dict[item]
sanitised_list.append(sanitised)
except:
pass
return "".join(sanitised_list)
In [20]:
def most_common(lst):
data = collections.Counter(lst)
return data.most_common(1)[0][0]
In [21]:
#strike a match algorithm!
#http://www.catalysoft.com/articles/StrikeAMatch.html
#http://stackoverflow.com/questions/653157/a-better-similarity-ranking-algorithm-for-variable-length-strings
def get_bigrams(s):
'''
Takes a string and returns a list of bigrams
'''
return [s[i:i+2] for i in xrange(len(s) - 1)]
def similarity(str1, str2):
'''
Perform bigram comparison between two strings
and return a percentage match in decimal form
'''
if (str1=="" or str2==""):
score = 0.0
else:
pairs1 = get_bigrams(str1)
pairs2 = get_bigrams(str2)
union = len(pairs1) + len(pairs2)
hit_count = 0
for x in pairs1:
for y in pairs2:
if x == y:
hit_count += 1
pairs2.remove(y)
break
if union == 0:
score = 0.
else:
score = (2.0 * hit_count) / union
return score
In [37]:
def layer_report(r):
structures = []
sims = []
for mem in r.xpath("*"):
raw_tags = strip_meta(strip_text(mem.extract()))
san = sanitise(raw_tags,'tags4.csv')
structures.append(san)
mc = most_common(structures)
for s in structures:
sims.append(similarity(s,mc))
ave_sim = sum(sims)/len(sims)
node_count = len(r.xpath("*"))
qual_nodes = sum([similarity_threshold<=x<=1 for x in sims])
proportion = qual_nodes/float(node_count)
done = (
(qual_nodes>=node_threshold) and
(proportion>=proportion_threshold) and
(ave_sim>=ave_similarity_threshold)
)
print("average similarity: " + str(ave_sim))
print("node count: " + str(node_count))
print("qualifying nodes: "+str(qual_nodes))
print("proportion of records similar: " + str(proportion))
print("Am I done? : " + str(done) )
return (done,sims)
In [23]:
def select_cube(r):
cubes = r.xpath("*")
sizes = [len(c.xpath("descendant::*")) for c in cubes]
ind = sizes.index(max(sizes))
print(
"returning node:" + str(ind) +
" with descendents: "+ str(sizes[ind])
)
return (cubes[ind])
In [30]:
def crush_ice(r):
(layer,sims) = layer_report(r)
if not layer:
return crush_ice(select_cube(r))
else:
return serve_drink(r,sims)
In [53]:
def serve_drink(r,sims):
cubes = r.xpath("*")
for ind in range(len(cubes)):
if sims[ind]>=similarity_threshold:
print("*"*10+"record number: "+str(ind)+"*"*10)
print(cubes[ind].extract())
#sys.stdout.write(strip_tags(rec.extract()))
#sys.stdout.write(rec.extract())
#print("***")
return("finished")
In [40]:
def export(cube):
"""make record"""
pass
In [54]:
r = requests.get('http://ora.ox.ac.uk/search/detailed?q=%2A%3A%2A&truncate=450&rows=50&sort=timestamp%20desc')
response = TextResponse(r.url, body=r.text, encoding='utf-8')
similarity_threshold = 0.60
node_threshold = 50
proportion_threshold = 0.70
ave_similarity_threshold = 0.70
crush_ice(response)
average similarity: 0.5
node count: 2
qualifying nodes: 1
proportion of records similar: 0.5
Am I done? : False
returning node:1 with descendents: 2005
average similarity: 0.0
node count: 5
qualifying nodes: 0
proportion of records similar: 0.0
Am I done? : False
returning node:0 with descendents: 1977
average similarity: 0.0
node count: 5
qualifying nodes: 0
proportion of records similar: 0.0
Am I done? : False
returning node:2 with descendents: 1954
average similarity: 0.563717746182
node count: 2
qualifying nodes: 1
proportion of records similar: 0.5
Am I done? : False
returning node:0 with descendents: 1294
average similarity: 0.334956712094
node count: 3
qualifying nodes: 1
proportion of records similar: 0.333333333333
Am I done? : False
returning node:2 with descendents: 1277
average similarity: 0.813790544088
node count: 57
qualifying nodes: 50
proportion of records similar: 0.877192982456
Am I done? : True
**********record number: 4**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:1e2274c5-1301-4f5b-8060-30c91d9609ca"></abbr>
<span class="stitle"><a href="/objects/uuid:1e2274c5-1301-4f5b-8060-30c91d9609ca">OP2-TPDS2015-DATA</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Gihan Mudalige;
Istvan Reguly;
Michael Giles;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:1e2274c5-1301-4f5b-8060-30c91d9609ca" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 5**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:37897aec-0a18-46f6-b6a7-dd8690fa2797"></abbr>
<span class="stitle"><a href="/objects/uuid:37897aec-0a18-46f6-b6a7-dd8690fa2797">Raw data for Pb2CoOsO6</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Dr Anatoliy Senyshyn;
Dr Pascal Manuel;
Dr Hongming Weng;
et al
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 6**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:3fbe8c31-f695-4737-b9fd-5dcc26013462"></abbr>
<span class="stitle"><a href="/objects/uuid:3fbe8c31-f695-4737-b9fd-5dcc26013462">Amino acid transport in Serpula lacrymans</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Monika Tlalka;
Sarah Watkinson;
Mark Fricker;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:3fbe8c31-f695-4737-b9fd-5dcc26013462" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 7**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:e71db18a-71f2-4806-9200-dc4cdc283ec8"></abbr>
<span class="stitle"><a href="/objects/uuid:e71db18a-71f2-4806-9200-dc4cdc283ec8">Direct origami assembly oxDNA kymograph data</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Jonathan Doye;
Ben Snodin;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:e71db18a-71f2-4806-9200-dc4cdc283ec8" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 8**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:c3c4eb21-bac3-4cda-b7fe-e17fcca83d93"></abbr>
<span class="stitle"><a href="/objects/uuid:c3c4eb21-bac3-4cda-b7fe-e17fcca83d93">Young Afghans facing return</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>A project in the UK aiming to prepare young men for return to Afghanistan through an assisted voluntary return programme was unsuccessful. A different, longer-term approach might have been more appropriate and more effective</td>
</tr>
<tr>
<td class="label">Author</td><td>
Lucy Williams;
Kim Robinson;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:c3c4eb21-bac3-4cda-b7fe-e17fcca83d93" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:c3c4eb21-bac3-4cda-b7fe-e17fcca83d93" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 9**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:05b98b62-e045-4b06-afa4-eb73c3e4707d"></abbr>
<span class="stitle"><a href="/objects/uuid:05b98b62-e045-4b06-afa4-eb73c3e4707d">Nanoparticle-loaded protein-polymer nanodroplets for improved stability and conversion efficiency in ultrasound imaging and drug delivery</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>We have developed a new formulation of volatile nanodroplets, stabilised by a protein and polymer coating. The nanodroplets are prepared from hydrophobic perfluoropentane (PFP) and coated with human serum albumin and polyethylene glycol modified N-hydrosuccinimide conjugated in dichloromethane using an oil-in-water emulsification method. The resulting nanodroplets have an average diameter of 344 nm and are stable at 37oC for several days. These p ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Creator</td><td>
Calum Crake;
Constantin-Cassios Coussios;
Anjali Seth;
et al
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 10**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:3624d0bc-0072-48b1-af89-290fed4dfc68"></abbr>
<span class="stitle"><a href="/objects/uuid:3624d0bc-0072-48b1-af89-290fed4dfc68">Wartime division in peacetime schools</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>An ethnically divided educational system in Bosnia and Herzegovina continues to limit the sustainable return, and to hamper reconciliation and the reconstruction of society</td>
</tr>
<tr>
<td class="label">Author</td><td>
Valery Perry;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:3624d0bc-0072-48b1-af89-290fed4dfc68" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:3624d0bc-0072-48b1-af89-290fed4dfc68" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 11**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:b07dc4ba-638f-4330-b696-abb3ccf14675"></abbr>
<span class="stitle"><a href="/objects/uuid:b07dc4ba-638f-4330-b696-abb3ccf14675">The curious case of North Korea</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Displacement and distress migration within and outside North Korea may be an indicator of state fragility but a reduction in numbers should not necessarily be read as a sign of improving conditions there. In fact, increased movements might be considered as positive, if they are accompanied by increased protection for refugees, survivors of trafficking, stateless children and other vulnerable populations.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Courtland Robinson;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:b07dc4ba-638f-4330-b696-abb3ccf14675" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:b07dc4ba-638f-4330-b696-abb3ccf14675" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 12**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:481f541b-5d0c-40ca-96a1-106267763dbc"></abbr>
<span class="stitle"><a href="/objects/uuid:481f541b-5d0c-40ca-96a1-106267763dbc">Research data for: Magnetic Targeting of Microbubbles against Physiologically Relevant Flow Conditions</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Joshua Owen;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 13**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:87baa394-ce2b-48df-a6fa-a8ea1eb2f179"></abbr>
<span class="stitle"><a href="/objects/uuid:87baa394-ce2b-48df-a6fa-a8ea1eb2f179">Voices in displacement</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>“These people are as if lost in time and space.” Still displaced after 20 years, residents of collective centres in Bosnia and Herzegovina share their frustration. They need to be listened to.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Claudia Meyerhoefer;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:87baa394-ce2b-48df-a6fa-a8ea1eb2f179" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:87baa394-ce2b-48df-a6fa-a8ea1eb2f179" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 14**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:838cfe71-ac74-4c61-a5b4-fbc6ac8337a6"></abbr>
<span class="stitle"><a href="/objects/uuid:838cfe71-ac74-4c61-a5b4-fbc6ac8337a6">Data quality and information management in DRC</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Author</td><td>
Janet Ousley;
Lara Ho;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:838cfe71-ac74-4c61-a5b4-fbc6ac8337a6" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:838cfe71-ac74-4c61-a5b4-fbc6ac8337a6" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 15**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:609102ac-de78-4caf-b10d-d64eba878e1b"></abbr>
<span class="stitle"><a href="/objects/uuid:609102ac-de78-4caf-b10d-d64eba878e1b">The role of remote voting in encouraging return</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Once there is a genuine possibility of going home, what influences a forced migrant’s decision to return to a pre-conflict residence, often in the face of very difficult conditions? What role can remote voting play?</td>
</tr>
<tr>
<td class="label">Author</td><td>
Djordje Stefanovic;
Neophytos Loizides;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:609102ac-de78-4caf-b10d-d64eba878e1b" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:609102ac-de78-4caf-b10d-d64eba878e1b" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 16**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:bb8e72ed-022f-4ff2-873a-9e524cfce3c1"></abbr>
<span class="stitle"><a href="/objects/uuid:bb8e72ed-022f-4ff2-873a-9e524cfce3c1">Party Representation in Times of Economic Crisis (Data)</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Stephen Whitefield;
Robert Rohrschneider;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:bb8e72ed-022f-4ff2-873a-9e524cfce3c1" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 17**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:4ee686ab-fc46-43ab-a3fa-ca8253ea1826"></abbr>
<span class="stitle"><a href="/objects/uuid:4ee686ab-fc46-43ab-a3fa-ca8253ea1826">Hunger in war and peace: an analysis of the nutritional status of women and children in Germany, 1914-1924</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>The question posed by this dissertation is very simple. What was the nutritional status of women and children in Germany during and subsequent to the First World War? The question itself is an old one, but it continues to be argued. To approach this issue, I have placed it in the context of a few of the century-old debates, continuing still, that relate to what the Germans called the 'Hungerblockade'.</p> <p>At the outbreak of the First World ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Mary Elisabeth Cox;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 18**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:f04e2319-eb60-4f42-b575-7e4958e8e17c"></abbr>
<span class="stitle"><a href="/objects/uuid:f04e2319-eb60-4f42-b575-7e4958e8e17c">The compound effects of conflict and disaster displacement in Bosnia and Herzegovina</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Some IDPs living in protracted displacement in Bosnia and Herzegovina, such as many Roma IDPs, were especially vulnerable to the effects of the May 2014 flooding and landslides.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Wesli H Turner;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:f04e2319-eb60-4f42-b575-7e4958e8e17c" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:f04e2319-eb60-4f42-b575-7e4958e8e17c" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 19**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:c4c20e39-a83a-4f0a-bbdd-b87060cb8944"></abbr>
<span class="stitle"><a href="/objects/uuid:c4c20e39-a83a-4f0a-bbdd-b87060cb8944">Refugees from Central American gangs</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>El Salvador, Guatemala and Honduras are among the world’s most fragile nations, yet they are largely ignored by refugee agencies who underestimate transnational criminal organisations’ abuses and powers of control, while overestimating national governments’ ability and willingness to protect their citizens.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Elizabeth G. Kennedy;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:c4c20e39-a83a-4f0a-bbdd-b87060cb8944" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:c4c20e39-a83a-4f0a-bbdd-b87060cb8944" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 20**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:cda668b8-a583-43c7-9919-35c0a18db571"></abbr>
<span class="stitle"><a href="/objects/uuid:cda668b8-a583-43c7-9919-35c0a18db571">EUREQUAL (Data)</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Geoffrey Evans;
Stephen Whitefield;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:cda668b8-a583-43c7-9919-35c0a18db571" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 21**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:c8cc8c91-5717-4e53-a579-c6f7a5c81f80"></abbr>
<span class="stitle"><a href="/objects/uuid:c8cc8c91-5717-4e53-a579-c6f7a5c81f80">Networked governance in Ecuador’s border regions</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>In order to improve security for both Colombian forced migrants and Ecuadorians in the communities where they live, an approach that takes advantage of governance networks can allow residents to negotiate access to resources and rights that they otherwise would not be able to enjoy. It can also improve relations between the two groups.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Lana Balyk;
Jeff Pugh;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:c8cc8c91-5717-4e53-a579-c6f7a5c81f80" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:c8cc8c91-5717-4e53-a579-c6f7a5c81f80" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 22**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:73070f0b-e4ba-42ba-912e-a246d70aba8e"></abbr>
<span class="stitle"><a href="/objects/uuid:73070f0b-e4ba-42ba-912e-a246d70aba8e">University of Oxford Research Data Management Survey, 2012</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>A survey of research data management practices and awareness across all four academic division at the University of Oxford. The survey received 314 full responses from active researchers at the University. Survey results were gathered using Bristol Online Survey. The survey was publicized via emails to departmental administrators who then passed the message on to researchers in their department via mailing lists.</td>
</tr>
<tr>
<td class="label">Creator</td><td>
Meriel Patrick;
James A J Wilson;
Sally Rumsey;
et al
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:73070f0b-e4ba-42ba-912e-a246d70aba8e" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 23**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:e8e504a1-bb81-47e9-8b74-068b1628f7b9"></abbr>
<span class="stitle"><a href="/objects/uuid:e8e504a1-bb81-47e9-8b74-068b1628f7b9">Surviving the odds: education, commerce and development among displaced Somalis</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Private entrepreneurship and the disapora play important roles in supporting displaced people in fragile ungoverned situations. They are also valuable in helping those situations emerge from fragility.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Abdirashid Duale;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:e8e504a1-bb81-47e9-8b74-068b1628f7b9" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:e8e504a1-bb81-47e9-8b74-068b1628f7b9" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 24**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:1702c0d1-ff77-40c4-81c7-09b0514ec7ad"></abbr>
<span class="stitle"><a href="/objects/uuid:1702c0d1-ff77-40c4-81c7-09b0514ec7ad">Flight, fragility and furthering stability in Yemen</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>The existence of a large number of refugees or internally displaced persons in a country is considered a primary indicator of instability.1 By this measure, and all others, Yemen is one of the world’s most fragile states. Less well understood is how this context affects the vulnerability of refugees, IDPs and migrants themselves and what can be done to strengthen protection for them.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Erin Mooney;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:1702c0d1-ff77-40c4-81c7-09b0514ec7ad" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:1702c0d1-ff77-40c4-81c7-09b0514ec7ad" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 25**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:851d96ac-1329-4d79-b437-7ee48795fe60"></abbr>
<span class="stitle"><a href="/objects/uuid:851d96ac-1329-4d79-b437-7ee48795fe60">The applications of artificial intelligence techniques in carcinogen chemistry</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>Computer-based drug design is a vital area of pharmaceutical chemistry; Quantitative Structure-Activity Relationships (QSARs), determined computationally from experimental observations, are crucial in identifying candidate drugs by early screening, saving time on synthesis and <em>in vivo</em> testing.</p><p>This thesis investigates the viability and the practicalities of using Mass Spectra-based pseudo-molecular descriptors, in comparison wit ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Alexander Priest;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2011</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 26**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:164d3618-aad3-4c55-a1d5-638a80ebf8f3"></abbr>
<span class="stitle"><a href="/objects/uuid:164d3618-aad3-4c55-a1d5-638a80ebf8f3">Humanitarian responses in the protection gap</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Often a combination of factors pushes people to leave their country, and the voluntary character of their departure remains debatable, challenging humanitarians both to meet needs and to adapt to changing categories of forced displacement.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Katharine Derderian;
Aurélie Ponthieu;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:164d3618-aad3-4c55-a1d5-638a80ebf8f3" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:164d3618-aad3-4c55-a1d5-638a80ebf8f3" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 27**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:9b2f2ba6-0761-4b11-931d-9d0f9d479844"></abbr>
<span class="stitle"><a href="/objects/uuid:9b2f2ba6-0761-4b11-931d-9d0f9d479844">Post-disaster Haitian migration</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Those who left Haiti in the chaotic aftermath of the 2010 earthquake did not generally find the same posture of solidarity and humanitarianism overseas that was apparent in the significant international assistance that followed the disaster.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Diana Thomaz;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:9b2f2ba6-0761-4b11-931d-9d0f9d479844" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:9b2f2ba6-0761-4b11-931d-9d0f9d479844" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 28**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:1cc195fd-e29e-4d05-9bb1-67a6ec33828e"></abbr>
<span class="stitle"><a href="/objects/uuid:1cc195fd-e29e-4d05-9bb1-67a6ec33828e">Sophia dataset</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Creator</td><td>
Alessandro R. Guazzi;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:1cc195fd-e29e-4d05-9bb1-67a6ec33828e" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 29**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:fa351516-9b3c-43c0-8bdc-5b0317cd5967"></abbr>
<span class="stitle"><a href="/objects/uuid:fa351516-9b3c-43c0-8bdc-5b0317cd5967">Modelling of calcium handling in genetically modified mice</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>This thesis develops biophysically-based data-driven mathematical models of intracellular calciumdynamics in ventricularmyocytes for both normal and genetically modified mouse hearts, based on species- and temperature-consistent experimental data. The models were subsequently applied to quantitatively examine the changes in calcium dynamics in mice with cardiomyocyte-specific knockout (KO) of the cardiac sarco/endoplasmic reticulum ATPase (SER ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Liren Li;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2011</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 30**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:3db56b4e-0a59-47e2-bc7c-ce6bbc9697b0"></abbr>
<span class="stitle"><a href="/objects/uuid:3db56b4e-0a59-47e2-bc7c-ce6bbc9697b0">Data for 'A Government that Worked Better and Cost Less?' (Hood and Dixon, OUP, 2015)</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>In their book 'A Government that Worked Better and Cost Less' Christopher Hood and Ruth Dixon evaluated the performance of UK government over the past 30 years, a period during which the managerialist reforms known collectively as 'New Public Management' were expected (by proponents of the reforms) to raise the quality and lower the costs of government.. To assess whether this was the case, Hood and Dixon assembled a wealth of quantitative data ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Creator</td><td>
Ruth Dixon;
Christopher Hood;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:3db56b4e-0a59-47e2-bc7c-ce6bbc9697b0" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 31**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:691b5533-33cc-4f08-8430-0df31d61fd34"></abbr>
<span class="stitle"><a href="/objects/uuid:691b5533-33cc-4f08-8430-0df31d61fd34">The 'phantom state' of Haiti</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>The fragile nature of the state had turned emigration into a major feature of Haitian life even before the earthquake displaced hundreds of thousands of people.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Andreas E. Feldmann;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:691b5533-33cc-4f08-8430-0df31d61fd34" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:691b5533-33cc-4f08-8430-0df31d61fd34" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 32**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:d63da0ec-a4b7-489f-8a99-aad2bce0cf56"></abbr>
<span class="stitle"><a href="/objects/uuid:d63da0ec-a4b7-489f-8a99-aad2bce0cf56">The displaced claiming their rights in fragile states</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>To date, displaced persons in fragile and conflict-affected states have had little success in claiming their rights for housing, land and property violations. Creative legal thinking and strategic litigation has the potential to change this.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Antonia Mulvey;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:d63da0ec-a4b7-489f-8a99-aad2bce0cf56" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:d63da0ec-a4b7-489f-8a99-aad2bce0cf56" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 33**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:e12874ec-ed9d-49b2-ac3a-33660e48a98f"></abbr>
<span class="stitle"><a href="/objects/uuid:e12874ec-ed9d-49b2-ac3a-33660e48a98f">Can Refugee Cessation be seen as a proxy for the end of state fragility?</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>The cessation of refugee status results from a judgment that a sufficient change has occurred in the refugees’ country of origin that they no longer require international protection. For individual refugees this may leave them in a precarious situation. For states hoping to dispel an image of being economically, politically or socially ‘fragile’, this judgment is clearly very helpful.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Georgia Cole;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:e12874ec-ed9d-49b2-ac3a-33660e48a98f" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:e12874ec-ed9d-49b2-ac3a-33660e48a98f" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 34**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:bd64a814-c12c-44c9-8d07-be8cd4d85a17"></abbr>
<span class="stitle"><a href="/objects/uuid:bd64a814-c12c-44c9-8d07-be8cd4d85a17">'Everyone for themselves' in DRC’s North Kivu</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>While the international donor community has been trying to engage with DRC by partnering with the government to implement the New Deal for Engagement in Fragile States, communities in DRC, especially those displaced in war-affected areas, continue to have to look out for themselves.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Dominic Keyzer;
Luisa Ryan;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:bd64a814-c12c-44c9-8d07-be8cd4d85a17" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:bd64a814-c12c-44c9-8d07-be8cd4d85a17" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 35**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:4b63a9a1-a015-471a-90eb-b9dfb07e5776"></abbr>
<span class="stitle"><a href="/objects/uuid:4b63a9a1-a015-471a-90eb-b9dfb07e5776">The thermally-driven rotating annulus: horizontal velocities in regular and weakly chaotic flow regimes</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>This dataset contains 11 1/2 hours of horizontal velocity measurements from four experiments using AOPP's 'small annulus' thermally-driven rotating annulus laboratory experiment. The experiments cover regular (2S, 3AV) and weakly chaotic (3SV) flow regimes. The apparatus consists of two concentric right circular cylinders with height 14.0cm and radii 2.5cm and 8.0cm, with a 17% glycerol / 83% water mixture (by volume) between them. The outer cyli ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Creator</td><td>
Wolf-Gerrit Früh;
Roland M. B. Young;
Peter L. Read;
et al
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:4b63a9a1-a015-471a-90eb-b9dfb07e5776" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 36**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:5d40217c-6da8-4fe8-a09b-c7744d464874"></abbr>
<span class="stitle"><a href="/objects/uuid:5d40217c-6da8-4fe8-a09b-c7744d464874">Long path fourier transform absorption spectroscopy for investigating pollution in the urban boundary layer</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>The control of atmospheric pollution in the urban environment has, in recent years, taken on important local, national and international significance. Legislation has been introduced in many countries to improve air quality in urban areas. Monitoring air pollution is an important part of understanding and improving air quality. Current standard methods of measuring air pollution only monitor at a single point in space which can lead to ambigui ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Pauline Sinclair;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2000</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 37**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:bc0fa2ef-e96b-4e42-a1dd-8f5dfb847ac0"></abbr>
<span class="stitle"><a href="/objects/uuid:bc0fa2ef-e96b-4e42-a1dd-8f5dfb847ac0">Repeated displacement in eastern DRC</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>For the vast majority of those affected by conflict, displacement is often seen as the only option in an attempt to find safety. The provision of some basic assistance in places to which people flee makes this process slightly easier but in the absence of state-led protection multiple displacement has become a defining feature of the Kivu conflict. This has implications for both the humanitarian and the development response.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Olivia Kalis;
Fran Beytrison;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:bc0fa2ef-e96b-4e42-a1dd-8f5dfb847ac0" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:bc0fa2ef-e96b-4e42-a1dd-8f5dfb847ac0" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 38**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:0266c640-0e97-42fd-bee7-312612fd567f"></abbr>
<span class="stitle"><a href="/objects/uuid:0266c640-0e97-42fd-bee7-312612fd567f">Fragile states, collective identities and forced migration</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>There has been a worrying tendency for the international community to ignore questions of state capacity when enacting repatriations. Governance and the rule of law should be vital considerations in attempts to deal with forced migration in fragile states such as DRC.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Kelly Staples;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:0266c640-0e97-42fd-bee7-312612fd567f" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:0266c640-0e97-42fd-bee7-312612fd567f" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 39**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:05352041-afcf-42bd-947b-e17c08e9bcc1"></abbr>
<span class="stitle"><a href="/objects/uuid:05352041-afcf-42bd-947b-e17c08e9bcc1">Fe3O4/carbon nanofibres with necklace architecture for enhanced electrochemical energy storage</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Fe3O4 spherulites on carbon nanofibres (CNF) to form novel necklace structures have been synthesised using a facile and scalable hydrothermal method, and their morphology and structure have been characterized using a range of electron microscopy and other techniques. The formation mechanism for the necklace structure has been proposed. The Fe3O4/CNF necklaces were sprayed onto large area current collectors to form electrodes with no binder and th ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Creator</td><td>
Patrick S. Grant;
Chaopeng Fu;
Amoghavarsha Mahadevegowda;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Dataset</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:05352041-afcf-42bd-947b-e17c08e9bcc1" title="Contains full text"></a></td>
</tr></table>
<div class="clear"></div>
</div>
**********record number: 40**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:e26273d8-ed3c-4680-8a62-c0cb0804eb74"></abbr>
<span class="stitle"><a href="/objects/uuid:e26273d8-ed3c-4680-8a62-c0cb0804eb74">Fragile states and protection under the 1969 African Refugee Convention</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Current practice in African states highlights both the potential and the limitations of the 1969 African Refugee Convention in providing protection to persons displaced from fragile states.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Tamara Wood;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:e26273d8-ed3c-4680-8a62-c0cb0804eb74" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:e26273d8-ed3c-4680-8a62-c0cb0804eb74" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 41**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:fb82f1e2-878e-4b11-b6f0-647ea26b09e6"></abbr>
<span class="stitle"><a href="/objects/uuid:fb82f1e2-878e-4b11-b6f0-647ea26b09e6">Peace villages for repatriates to Burundi</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Burundi’s peace villages, which are intended both as models for reintegration and as centres of economic development, have encountered a number of problems which are related to the country’s continued fragility as a state.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Jean-Benoît Falisse;
René Claude Niyonkuru;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:fb82f1e2-878e-4b11-b6f0-647ea26b09e6" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:fb82f1e2-878e-4b11-b6f0-647ea26b09e6" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 42**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:dbd7155e-ba12-4ed5-babb-74aa4f22b1ea"></abbr>
<span class="stitle"><a href="/objects/uuid:dbd7155e-ba12-4ed5-babb-74aa4f22b1ea">Liberia: local politics, state building and reintegration of populations</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Interventions aiming to assist IDPs and refugees returning home in fragile states would do well to take note of the local political and economic contexts in the aftermath of war, because these deeply affect the reintegration of war-affected populations.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Jairo Munive;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:dbd7155e-ba12-4ed5-babb-74aa4f22b1ea" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:dbd7155e-ba12-4ed5-babb-74aa4f22b1ea" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 43**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:533df605-9696-49d5-9c30-5cf1b1be459e"></abbr>
<span class="stitle"><a href="/objects/uuid:533df605-9696-49d5-9c30-5cf1b1be459e">Ukraine: the end of post-Soviet gas pricing</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>In 2015, Ukraine’s gas import prices have been pulled down by the effects of sustained low prices in Europe and the expanding reverse flow trade. The military crisis and soured relations with Russia have effectively finished off the post-Soviet method of setting prices by bilateral, politically influenced, negotiations. In the domestic market, shock therapy has been applied: households’ gas tariffs were hiked by 280 per cent on average, in April. ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Author</td><td>
Simon Pirani;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-28T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Journal article</b></td>
</tr>
<tr class="icontr">
<td><a class="peer" href="/objects/uuid:533df605-9696-49d5-9c30-5cf1b1be459e" title="Peer-reviewed"></a></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:533df605-9696-49d5-9c30-5cf1b1be459e" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:533df605-9696-49d5-9c30-5cf1b1be459e" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 44**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:9dc41f59-1c6c-4bae-ba26-a4466e3670ec"></abbr>
<span class="stitle"><a href="/objects/uuid:9dc41f59-1c6c-4bae-ba26-a4466e3670ec">Displaced populations and their effects on regional stability</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>A better understanding of state fragility – combined with improvements in policy and funding for displaced populations – is necessary to prevent the proliferation of further regional conflicts.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Joe Landry;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:9dc41f59-1c6c-4bae-ba26-a4466e3670ec" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:9dc41f59-1c6c-4bae-ba26-a4466e3670ec" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 45**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:c1f907d6-4877-486b-a36e-9fc9cf2c4663"></abbr>
<span class="stitle"><a href="/objects/uuid:c1f907d6-4877-486b-a36e-9fc9cf2c4663">The increasing hub pricing and market integration in EuropeThe increasing hub pricing and market integration in Europe</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Since 2007, the sale and purchase of natural gas in Europe has been evolving from a ‘traditional’ model based on bilateral long-term contracts with prices (largely) linked to those of oil products, to trading by means of standardized contracts concluded between a large number of participants with prices set by supply and demand ‘at the hub’.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Beatrice Petrovich;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-28T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Journal article</b></td>
</tr>
<tr class="icontr">
<td><a class="peer" href="/objects/uuid:c1f907d6-4877-486b-a36e-9fc9cf2c4663" title="Peer-reviewed"></a></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:c1f907d6-4877-486b-a36e-9fc9cf2c4663" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:c1f907d6-4877-486b-a36e-9fc9cf2c4663" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 46**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:be03d008-cf0d-40f2-9768-4cdf396b6499"></abbr>
<span class="stitle"><a href="/objects/uuid:be03d008-cf0d-40f2-9768-4cdf396b6499">How to engage constructively with fragile states</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Donors have allocated increasing resources in fragile states to the reform and/or rebuilding of the architecture of the state – such as justice systems, the police and army, and the management of ministries – in efforts to support stability. This has been important for all sectors of society, including displaced people.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Jon Bennett;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:be03d008-cf0d-40f2-9768-4cdf396b6499" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:be03d008-cf0d-40f2-9768-4cdf396b6499" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 47**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:277f138a-7867-4191-9f0e-9f3e4e3f284e"></abbr>
<span class="stitle"><a href="/objects/uuid:277f138a-7867-4191-9f0e-9f3e4e3f284e">The impact of US LNG exports on global markets</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>Despite its relative maturity as a gas producing province, the USA has defied the expectations of market participants and observers over the past two decades. Figure 9.1 shows the make-up of supply to the US market comprising: US gas production, Canadian pipeline imports (net), net LNG imports, and pipeline exports to Mexico (net).</td>
</tr>
<tr>
<td class="label">Author</td><td>
Howard Rogers;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-28T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Journal article</b></td>
</tr>
<tr class="icontr">
<td><a class="peer" href="/objects/uuid:277f138a-7867-4191-9f0e-9f3e4e3f284e" title="Peer-reviewed"></a></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:277f138a-7867-4191-9f0e-9f3e4e3f284e" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:277f138a-7867-4191-9f0e-9f3e4e3f284e" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 48**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:e86c4a39-6c96-426d-b941-ae724ee214b1"></abbr>
<span class="stitle"><a href="/objects/uuid:e86c4a39-6c96-426d-b941-ae724ee214b1">State fragility, refugee status and 'survival migration'</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>State fragility poses a challenge to the refugee regime. Rather than just placing the emphasis on the need to protect people fleeing the acts of states against their own populations, it also demands the protection of people fleeing the omissions of states, whether due to states' unwillingness or to their inability to provide for their citizens’ fundamental rights.</td>
</tr>
<tr>
<td class="label">Author</td><td>
Alexander Betts;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:e86c4a39-6c96-426d-b941-ae724ee214b1" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:e86c4a39-6c96-426d-b941-ae724ee214b1" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 49**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:c62f2c86-6c13-4e43-98a4-1d893a626b01"></abbr>
<span class="stitle"><a href="/objects/uuid:c62f2c86-6c13-4e43-98a4-1d893a626b01">From the editors</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Author</td><td>
Maurice Herson;
Marion Couldrey;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2013-05-29T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Article</b></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:c62f2c86-6c13-4e43-98a4-1d893a626b01" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:c62f2c86-6c13-4e43-98a4-1d893a626b01" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 50**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:8eba90bc-6fd5-4834-8586-e907f4078da4"></abbr>
<span class="stitle"><a href="/objects/uuid:8eba90bc-6fd5-4834-8586-e907f4078da4">The role of Wee1 in the hypoxia-induced DNA damage response and its potential as a therapeutic target</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>The majority of tumours have a poor vasculature which results in low oxygen supply. This, coupled with the high oxygen demand often leads to regions of hypoxia. The physiological relevance of this includes resistance to radiotherapy and chemotherapy, as well as activation of specific signalling cascades. Chk1, a component of the DNA damage response, is activated in acute hypoxia even in the absence of DNA damage. Loss or inhibition of Chk1 sen ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Eleanor Michiko O'Brien;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2012</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 51**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:ef2fa738-86cc-485e-bdfe-f9cda456c29b"></abbr>
<span class="stitle"><a href="/objects/uuid:ef2fa738-86cc-485e-bdfe-f9cda456c29b">Foreword</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Author</td><td>
Bangha, I;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2014</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Book section</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 52**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:8f212fe7-8214-476f-808f-6268cb96cdcb"></abbr>
<span class="stitle"><a href="/objects/uuid:8f212fe7-8214-476f-808f-6268cb96cdcb">Polycomb group proteins recruitment during mouse development</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td><p>Polycomb proteins are a group of repressor proteins that form multiprotein complexes, Polycomb repressor complexes (PRC) that mediate gene silencing. Two major complexes that have been widely studied are PRC1 and PRC2.Both complexes have enzymatic activities that modify specific histone residues, monoubiquitination of H2AK119 (H2AK119u1) and methylation of H3K27 (H3K27me3) respectively, and it is thought that this is the basis for their silenc ... [truncated at 450 characters in length]</p></td>
</tr>
<tr>
<td class="label">Creator</td><td>
Ligia MS Tavares;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2010</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Thesis</b></td>
</tr>
</table>
<div class="clear"></div>
</div>
**********record number: 53**********
<div class="response_doc">
<abbr class="unapi-id" title="uuid:02cda9ac-f91a-453b-824e-6eab500fc4a5"></abbr>
<span class="stitle"><a href="/objects/uuid:02cda9ac-f91a-453b-824e-6eab500fc4a5">The impact of falling oil and gas prices on non-US LNG producers</a></span>
<div class="clear"></div>
<table class="det1">
<tr>
<td class="label">Abstract</td>
<td>The fall in the oil price from a high of $115 per barrel in mid-2014 to around $65 per barrel in May 2015 has clearly impacted the revenues and commercial outlook of LNG producers and consumers, given the strong historic link between LNG contract prices and oil. The LNG contract price is generally negotiated in relation to a slope, which captures the link in percentage terms between the oil price in US$ per barrel and the LNG price in US$ per MMB ... [truncated at 450 characters in length]</td>
</tr>
<tr>
<td class="label">Author</td><td>
James Henderson;
</td></tr>
<tr>
<td class="label">Date</td>
<td>2015-09-28T00:00:00Z</td>
</tr>
</table>
<table class="det2">
<tr>
<td><b>Journal article</b></td>
</tr>
<tr class="icontr">
<td><a class="peer" href="/objects/uuid:02cda9ac-f91a-453b-824e-6eab500fc4a5" title="Peer-reviewed"></a></td>
</tr>
<tr class="icontr">
<td><a class="fulltext" href="/objects/uuid:02cda9ac-f91a-453b-824e-6eab500fc4a5" title="Contains full text"></a></td>
</tr><tr class="icontr">
<td><a class="pubcopy" href="/objects/uuid:02cda9ac-f91a-453b-824e-6eab500fc4a5" title="Contains link to publisher copy"></a></td>
</tr>
</table>
<div class="clear"></div>
</div>
Out[54]:
'finished'
In [ ]:
In [ ]:
Content source: patrick-s-h-lewis/IceBreak
Similar notebooks: