Skip to main content
Powered by ShareScore

Find research datasets worth reusing

Search datasets from major research repositories and use ShareScore to quickly assess how well each record supports discovery, access, and reuse.

297

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

297 results for “pearls”

Learn how ShareScore rates datasets ↗
ClinicalTrials.gov20/100

Caries Prevention Potential of Pearl Powder Versus CPP-ACP on Enamel White Spot Lesions

ClinicalTrials.gov study NCT03973554. IPD Sharing: Not stated. Countries: 0. Publications: 0.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov20/100

Pearls and Pitfalls in Usage of Plasma-Rich Platelet Graft Versus Dartos Flap in Distal Penile Hypospadias Repair

ClinicalTrials.gov study NCT06808139. IPD Sharing: UNDECIDED. Countries: 0. Publications: 0.

restrictedIPD-UNDECIDEDFeb 2026View details →
nasa20/100

Pearl River Estuary Pollution Project (PREPP)

Measurements made under the Pearl River Estuary Pollution Project (PREPP) near Hong Kong in 2001.

restrictednotspecifiedApr 2025View details →
geo16/100

Global gene expression profile for pearl oyster

GEO Series GSE14306. Pinctada maxima. 84 samples. Type: Expression profiling by array.

openGEO-OpenFeb 2010View details →
geo16/100

miRNA expression profile of mantle tissues for pearl oyster, Pinctada fucata

GEO Series GSE145993. Pinctada fucata. 1 samples. Type: Non-coding RNA profiling by high throughput sequencing.

openGEO-OpenMay 2021View details →
geo16/100

cDNA microarray analysis revealing candidate biomineralizational genes of the pearl oyster, Pinctada fucata martensii

GEO Series GSE70439. Pinctada imbricata. 12 samples. Type: Expression profiling by array.

openGEO-OpenJul 2016View details →
geo16/100

Analysis of the global gene expression profile for pearl oyster, Pinctada maxima, exposed to organotin (tributyltin)

GEO Series GSE13980. Pinctada maxima. 6 samples. Type: Expression profiling by array.

openGEO-OpenFeb 2010View details →
geo16/100

An integrated transcriptome analysis of immunological responses in pearl sac of pearl mussel Hyriopsis cumingii after mantle implantation

GEO Series GSE123069. Sinohyriopsis cumingii. 10 samples. Type: Expression profiling by high throughput sequencing.

openGEO-OpenNov 2019View details →
geo16/100

Digital gene expression tag profile of five development stages of pearl sac from pearl oyster Pinctada martensii reveals potential candidates contributing to nacre formation

GEO Series GSE46265. Pinctada imbricata. 5 samples. Type: Expression profiling by high throughput sequencing.

openGEO-OpenMay 2016View details →
geo16/100

Effects of Lithospermum erythrorhizon on gut health and growth performance of pearl gentian grouper based on Transcriptome

GEO Series GSE235735. Epinephelus fuscoguttatus x Epinephelus lanceolatus. 9 samples. Type: Expression profiling by high throughput sequencing.

openGEO-OpenJun 2023View details →
zenodo16/100

Bodhgayā, Bihar. Assemblage of pearls.

<p>Bodhgayā, Bihar. Assemblage of pearls and pieces of shell. British Museum 1892,1103.71 presented by Alexander Cunningham.</p>

restrictedOct 2018View details →
zenodo12/100

The measurements and three operational numerical forecasts of surface wind speed over Pearl River Estuary during 2018–2021.

Open the record for dataset details and reuse information.

restrictedcc-by-4.0Jan 2024View details →
zenodo8/100

Major outputs for source apportionment of fine secondary inorganic aerosol over the Pearl River Delta region using a hybrid method

<p>The results for our work can be downloaded from this URL. The source impact estimates were simulated by CAMx (v6.4) with the module of PSAT in January, April, July, and October 2015. Matlab R2017b was used to perform spatial interpolation, optimization, and statistics calculations.</p>

restrictedJul 2020View details →
zenodo8/100

Artifacts of PEARL

<p>This repository contain the artifacts of a paper titled &quot;Program Repair as a Code Completion Problem: Addressing the Challenge of Accurately Locating Fine-Grained Buggy Code Elements&quot; under review by ICSE&#39;21.</p> <p>The files <strong>prediction_CoCoNut.csv</strong> and <strong>prediction_ManySStuBs4J.csv</strong> illustrate the prediction results of <strong>BEP</strong> on the two datasets, in which the column <em>element_Rank</em> shows the ranking of buggy element and the column <em>rank</em> is for operation path.</p> <p>The file <strong>Pipeline_Results.zip</strong> contains the&nbsp;results of our repair pipeline on the 111&nbsp;single-token bugs. In each folder,&nbsp;<em>rem.txt</em> corresponds to the buggy line, <em>add.txt</em> corresponds to the correct line, and <em>context.txt</em> corresponds to the whole buggy method. These three files are required inputs for each prediction. <em>query.txt</em> is the content sent to <em>AnyCodeGen </em>and the&nbsp;returned code fragment is stored in <em>result.txt</em>.&nbsp;</p> <p>We also open the cleaned dataset of ManySStuBs4J which only contains single-token bugs in&nbsp;<strong>Single-token_bugs_in_ManySStuBs4J.zip</strong>. In this file, each bug is corresponding to three lines with the same line number in&nbsp;three different files which are <em>rem.txt</em>, <em>add.txt</em>, and <em>context.txt</em>, respectively representing the buggy line, correct line, and the buggy method. This storage style follows the training set of <a href="https://github.com/lin-tan/CoCoNut-Artifact">CoCoNut</a>. Note that we do not release our pre-processed dataset of CoCoNut sinse it is too large. We encourage researchers to process this dataset based on their own needs. Moreover, we do provide the script we used for selecting single-token bugs which is <strong>single-token_selection.py</strong>.</p> <p>We also note there is no visual interface for the newly added bugs in Defects4J-V2.0. We thus provide our script for selecting single-token bugs (<strong>getSingle-token_bugs_from_D4J.py</strong>) from these bugs,&nbsp;making&nbsp;it easy for others to reproduce our experiment.&nbsp;</p> <p><strong>Case Study:</strong></p> <p><strong>PEARL</strong> does not work well on method name-related fix. For the following bug (Closure-10), our BEP model&nbsp;successfully predicts the oracle operation path&nbsp;as No.2.</p> <pre><code class="language-java">- return allResultsMatch(n, MAY_BE_STRING_PREDICATE); + return anyResultsMatch(n, MAY_BE_STRING_PREDICATE);</code></pre> <p>Nonetheless, we have to change this statement into &quot;<strong>return ??</strong>&quot; when querying <strong>AnyCodeGen</strong> due to the format restriction of it. Unfortunately, <strong>AnyCodeGen</strong> cannot synthesize such a detailed method call, thus leading to the failure of PEARL of repairing this bug.</p> <p>&nbsp;</p> <p>&nbsp;</p> <p>The source code of <strong>PEARL</strong> will be open-access upon acceptance.</p>

restrictedAug 2020View details →
zenodo8/100

PEARL

<p>This repository contains the artifacts of PEARL.</p> <p>The files&nbsp;<strong>prediction_CoCoNut.csv</strong>&nbsp;and&nbsp;<strong>prediction_ManySStuBs4J.csv</strong>&nbsp;illustrate the prediction results of&nbsp;<strong>BEP</strong>&nbsp;on the two datasets, in which the column&nbsp;<em>element_Rank</em>&nbsp;shows the ranking of buggy element and the column&nbsp;<em>rank</em>&nbsp;is for operation path.</p> <p>The file&nbsp;<strong>Pipeline_Results.zip</strong>&nbsp;contains the&nbsp;results of our repair pipeline on the 111&nbsp;single-token bugs. In each folder,&nbsp;<em>rem.txt</em>&nbsp;corresponds to the buggy line,&nbsp;<em>add.txt</em>&nbsp;corresponds to the correct line, and&nbsp;<em>context.txt</em>&nbsp;corresponds to the whole buggy method. These three files are required inputs for each prediction.&nbsp;<em>query.txt</em>&nbsp;is the content sent to&nbsp;<em>AnyCodeGen&nbsp;</em>and the&nbsp;returned code fragment is stored in&nbsp;<em>result.txt</em>.&nbsp;</p> <p>We also open the cleaned dataset of ManySStuBs4J which only contains single-token bugs in&nbsp;<strong>Single-token_bugs_in_ManySStuBs4J.zip</strong>. In this file, each bug is corresponding to three lines with the same line number in&nbsp;three different files which are&nbsp;<em>rem.txt</em>,&nbsp;<em>add.txt</em>, and&nbsp;<em>context.txt</em>, respectively representing the buggy line, correct line, and the buggy method. This storage style follows the training set of&nbsp;<a href="https://github.com/lin-tan/CoCoNut-Artifact">CoCoNut</a>. Note that we do not release our pre-processed dataset of CoCoNut sinse it is too large. We encourage researchers to process this dataset based on their own needs. Moreover, we do provide the script we used for selecting single-token bugs which is&nbsp;<strong>single-token_selection.py</strong>.</p> <p>We also note there is no visual interface for the newly added bugs in Defects4J-V2.0. We thus provide our script for selecting single-token bugs (<strong>getSingle-token_bugs_from_D4J.py</strong>) from these bugs,&nbsp;making&nbsp;it easy for others to reproduce our experiment.&nbsp;</p> <p>Finally, we release our souce code in <strong>source code.zip</strong> and will build a GitHub homepage for PEARL upon acceptance.</p> <p>&nbsp;</p> <p><strong>Case study on the failure of PEARL:</strong></p> <p><strong>PEARL</strong>&nbsp;does not work well on method name-related fix. For the following bug (Closure-10), our BEP model&nbsp;successfully predicts the oracle operation path&nbsp;as No.2.</p> <pre><code>- return allResultsMatch(n, MAY_BE_STRING_PREDICATE); + return anyResultsMatch(n, MAY_BE_STRING_PREDICATE);</code></pre> <p>Nonetheless, we have to change this statement into &quot;<strong>return ??</strong>&quot; when querying&nbsp;<strong>AnyCodeGen</strong>&nbsp;due to the format restriction of it. Unfortunately,&nbsp;<strong>AnyCodeGen</strong>&nbsp;cannot synthesize such a detailed method call, thus leading to the failure of PEARL of repairing this bug.</p> <p>&nbsp;</p> <p><strong>Case study on the high CR of PEARL:</strong></p> <pre><code class="language-java">// Ground-truth patch for Closure-62 if (excerpt.equals(LINE) - &amp;&amp; 0 &lt;= charno &amp;&amp; charno &lt; sourceExcerpt.length()) { + &amp;&amp; 0 &lt;= charno &amp;&amp; charno &lt;= sourceExcerpt.length()) { // An overfitting patch generated for Closure-62 by jKali - if (excerpt.equals(LINE) - &amp;&amp; 0 &lt;= charno &amp;&amp; charno &lt; sourceExcerpt.length()) { + if (true) {</code></pre> <p>The ground-truth patch (also the <strong>PEARL</strong>-generated) and <strong>jKali</strong>-generated patch for the bug Closure-62 are listed. The ground-truth patch changes an operator <strong>&lt;</strong>&nbsp;into <strong>&lt;=</strong>. <strong>PEARL</strong> first identifies this operator and the operation type to be updated. After obtaining these information, we change the third line&nbsp;to&nbsp; <em>&amp;&amp; 0 &lt;= charno &amp;&amp; ??) {</em>&nbsp; and send the whole method to <strong>AnyCodeGen</strong>. After computing the possibilities of possible answers, <strong>AnyCodeGen</strong> returns <em>charno &lt;= sourceExcerpt.length()</em>&nbsp;as the code fragment to replace ``??&#39;&#39; and thus we generate this correct patch.</p> <p>On the contrary, <strong>jKali</strong> is Java implementation of Kali. The operators implemented in it are removal of statements, modification of if conditions to&nbsp;<em>true</em>&nbsp;and&nbsp;<em>false</em>&nbsp;and so on which are too course-grained. In this example, <strong>jKali</strong> identifies the whole conditional statement and modifies the condition to&nbsp;<em>true</em>&nbsp;which leads to the overfitting patch. This case is a vivid example showing that fine-grained buggy element localization can avoid generating overfitting patch.</p>

restrictedJan 2021View details →
zenodo8/100

Monthly Chlorophyll-a and total suspended solids concentrations during August 2002 and July 2020 in the Pearl River Estuary, China

<p>Monthly Chlorophyll-a (Chl-a) and total suspended solids (TSS) concentrations during August 2002 and July 2020 in the Pearl River Estuary, China. Chl-a and TSS&nbsp;were retrieved based on a machine learning algorithm developed by <em>Ma et al.</em> [2022] using satellite imagery from MODerate-resolution Imaging Spectroradiometer (MODIS) onboard Aqua.&nbsp;</p> <p>Reference</p> <p>Ma, C., J. Zhao, B. Ai, S. Sun, and Z. Yang (2022), Machine Learning Based Long‐Term Water Quality in the Turbid Pearl River Estuary, China, <em>Journal of Geophysical Research: Oceans</em>, <em>127</em>(1).</p>

restrictedJan 2023View details →
zenodo8/100

Pearl River ADCP data - momentum redistribution

<p>These three-dimensional velocity data were acquired using a boat-mounted acoustic Doppler current profiler (ADCP) on a series of six consecutive meander bends of the Pearl River, near Bogalusa, Louisiana. Data were collected during campaigns in 2017 and 2018. In this published dataset, there are raw ADCP files, as well as processed data provided within a Matlab .mat file.</p>

restrictedMar 2023View details →

ScienceDex guides

Understand access before you commit

These curated guides explain access requirements, typical timelines, costs, and reuse considerations for widely used research datasets.

Compare curated datasets

Allen Brain Atlas

Allen Brain Atlas is an Allen Institute collection of brain map atlases, datasets, APIs, and analysis tools covering mouse, human, and non-human primate brain resources.

allen-brain-atlas
neuroscienceopenDocumentation, web resources, and API references are available online.
Last verified 2026-04-30Open record

Annotated Behaviour and Observability Dataset (ABODe)

ABODe is a University of Edinburgh DataShare dataset for behavior classification in group-housed mice using home-cage video, identities, bounding boxes, ground-plate positions, and annotator labels.

abode-home-cage
behavioral-neuroscienceopenThe DataShare record exposes download links for annotations, documentation, license text, and the zipped per-snippet data directory.
Last verified 2026-04-30Open record

DANDI Archive for NWB datasets

DANDI is a BRAIN Initiative archive for publishing and sharing neurophysiology data, including electrophysiology, optophysiology, and behavioral data packaged as NWB and related standards.

dandi-nwb
electrophysiologyopenPublished Dandiset metadata and archive endpoints are available through the production DANDI API.
Last verified 2026-04-30Open record

International Brain Laboratory public data

The International Brain Laboratory public data releases expose standardized mouse decision-making experiments, including Neuropixels recordings, widefield calcium imaging, behavior, and session metadata accessed through the ONE API.

ibl
behavioral-neuroscienceopenPublic sessions can be searched and loaded from the IBL public data server through ONE.
Last verified 2026-04-29Open record

OpenNeuro

OpenNeuro is a free, open platform for sharing neuroimaging datasets, with public search, dataset pages, and download paths for web, S3, DataLad, and the OpenNeuro CLI.

openneuro
neuroscienceopenPublished datasets are available on demand over the internet.
Last verified 2026-04-29Open record