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.

7,523

datasets available to search

ShareScore release 0.7.1

Reset

Dataset results

7,523 results for “Annotation”

Learn how ShareScore rates datasets ↗
zenodo40/100

Recordings of zebra finch group behaviors with manually annotated vocal segments

<div> <div>This dataset contains recording files and manually annotated vocal segments of freely behaving zebra finches in the BirdPark. The files contain animal-borne accelerometer, microphone and video channels. Birds are housed in groups of different sizes (2, 4, or 8 birds, (one 7-mins file per group). The dataset contains 112 mins of recordings from 4 different experiments.</div> </div> <p>The dataset is published as an appendix of the following paper:</p> <p><a href="https://doi.org/10.1101/2022.09.23.509166">R&uuml;ttimann, L., Wang, Y., Rychen, J., Tomka, T., H&ouml;rster, H., Rocha, M. D., &amp; Hahnloser, R. H. (2024). Multimodal system for recording individual-level behaviors in songbird groups. bioRxiv.</a></p> <p>See the README.pdf file for a detailed description.</p>

opengpl-2.0-or-laterAug 2024View details →
zenodo40/100

The North Pacific Eukaryotic Gene Catalog: metatranscriptome assemblies with taxonomy, function and abundance annotations

<p>This data continues with the development of the unprocessed NPEGC Trinity <em>de novo</em> metatranscriptome assemblies, uploaded to this Zenodo repository for raw assemblies: <a href="../records/7332796">The North Pacific Eukaryotic Gene Catalog: Raw assemblies from Gradients 1, 2 and 3</a><br><br>A full description of this data is published in Scientific Data, available here: <a href="https://www.nature.com/articles/s41597-024-04005-5" target="_blank" rel="noopener">The North Pacific Eukaryotic Gene Catalog of metatranscriptome assemblies and annotations</a>. Please cite this publication if your research uses this data:<br><br>Groussman, R. D., Coesel, S. N., Durham, B. P., Schatz, M. J., &amp; Armbrust, E. V. (2024). The North Pacific Eukaryotic Gene Catalog of metatranscriptome assemblies and annotations. <em>Scientific Data</em>, <em>11</em>(1), 1161.</p> <p><br>Excerpts of key processing steps are sampled below with links to the detailed code on the main github code repository:&nbsp;<a href="https://github.com/armbrustlab/NPac_euk_gene_catalog">https://github.com/armbrustlab/NPac_euk_gene_catalog</a></p> <p><br>Processing and annotation of protein-level NPEGC metatranscripts is done in 6 primary steps:<br>1. Six-frame translation into protein sequences<br>2. Frame-selection of protein-coding translation frames<br>3. Clustering of protein sequences at 99% sequence identity<br>4. Taxonomic annotation against MarFERReT v1.1 + MARMICRODB v1.0 multi-kingdom marine reference protein sequence library with DIAMOND<br>5. Functional annotation against Pfam 35.0 protein family HMM profiles using HMMER3<br>6. Functional annotation against KOfam HMM profiles (KEGG release 104.0) using KofamScan v1.3.0<br><br><code># Define local NPEGC base directory here:</code><br><code>NPEGC_DIR="/mnt/nfs/projects/armbrust-metat"</code></p> <p><code># Raw assemblies are located in the /assemblies/raw/ directory</code><br><code># for each of the metatranscriptome projects</code><br><code>PROJECT_LIST="D1PA G1PA G2PA G3PA G3PA_diel"</code></p> <p><code># raw Trinity assemblies:</code><br><code>RAW_ASSEMBLY_DIR="${NPEGC_DIR}/${PROJECT}/assemblies/raw"</code><br><br><strong>Translation</strong><br>We began processing the raw metatranscriptome assemblies by six-frame translation from nucleotide transcripts into three forward and three reverse reading frame translations, using the transeq function in the EMBOSS package. We add a cruise and sample prefix to the sequence IDs to ensure unique identification downstream (ex, `&gt;TRINITY_DN2064353_c0_g1_i1_1` &nbsp;to `&gt;G1PA_S09C1_3um_TRINITY_DN2064353_c0_g1_i1_1` for the S09C1_3um sample in the G1PA assemblies). See <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.6tr_frame_selection_clustering.sh">NPEGC.6tr_frame_selection_clustering.sh</a> for full code description.<br><br>Example of six-frame translation using transeq<br><code>transeq -auto -sformat pearson -frame 6 -sequence 6tr/${PREFIX}.Trinity.fasta -outseq 6tr/${PREFIX}.Trinity.6tr.fasta</code><br><br><strong>Frame selection</strong><br>We use a custom frame-selection python script <a href="https://github.com/armbrustlab/marferret/blob/main/scripts/python/keep_longest_frame.py">keep_longest_frame.py</a> to determine the longest coding length in each open reading frame and retain this sequence (or multiple sequences if there is a tie) for downstream analyses. &nbsp;See <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.6tr_frame_selection_clustering.sh">NPEGC.6tr_frame_selection_clustering.sh</a> for full code description.<br><br><strong>Clustering by sequence identity</strong><br>To reduce sequence redundancy and near-identical sequences, we cluster protein sequences at the 99% sequence identity level and retain the sequence cluster representative in a reduced-size FASTA output file.&nbsp;See <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.6tr_frame_selection_clustering.sh">NPEGC.6tr_frame_selection_clustering.sh</a> for full code description of linclust/mmseqs clustering.<br><br>Sample of linclust clustering script: core mmseqs function<br><code>function NPEGC_linclust {</code><br><code># make an index of the fasta file:</code><br><code>$MMSEQS_DIR/mmseqs createdb $FASTA_PATH/$FASTA_FILE NPac.$STUDY.bf100.db</code><br><code># cluster sequences at $MIN_SEQ_ID</code><br><code>$MMSEQS_DIR/mmseqs linclust NPac.${STUDY}.bf100.db NPac.${STUDY}.clusters.db NPac_tmp --min-seq-id ${MIN_SEQ_ID}</code><br><code># retieve cluster representatives:</code><br><code>$MMSEQS_DIR/mmseqs result2repseq NPac.${STUDY}.bf100.db NPac.${STUDY}.clusters.db NPac.${STUDY}.clusters.rep</code><br><code># generate flat FASTA output with cluster reps</code><br><code>$MMSEQS_DIR/mmseqs result2flat NPac.${STUDY}.bf100.db NPac.${STUDY}.bf100.db NPac.${STUDY}.clusters.rep NPac.${STUDY}.bf100.id99.fasta --use-fasta-header</code><br><code>}</code><br><br>Corresponding files uploaded to this repository: Gzip-compressed FASTA files after translation, frame-selection, and clustering at 99% sequence identity (.bf100.id99.aa.fasta.gz)<br><strong>&nbsp;</strong><em> &nbsp; NPac.G1PA.bf100.id99.aa.fasta.gz</em><br><em>&nbsp; &nbsp; NPac.G2PA.bf100.id99.aa.fasta.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA.bf100.id99.aa.fasta.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA_diel.bf100.id99.aa.fasta.gz</em><br><em>&nbsp; &nbsp; NPac.D1PA.bf100.id99.aa.fasta.gz</em><br><br><strong>MarFERReT + MARMICRODB taxonomic annotation with DIAMOND</strong></p> <p>Taxonomy was inferred for the NPEGC metatranscripts with the DIAMOND fast read alignment software against the <a href="../records/10586950">MarFERReT v1.1 + MARMICRODB v1.0 multi-kingdom marine reference protein sequence library (v1.1)</a>, a combined database of the <a href="https://doi.org/10.1038/s41597-023-02842-4">MarFERReT v1.1 marine microbial eukaryote sequence library</a> and <a href="https://doi.org/10.5281/zenodo.3520509">MARMICRODB v1.0 </a>prokaryote-focused marine genome database. See <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.diamond_taxonomy.log.sh">NPEGC.diamond_taxonomy.log.sh</a> for full description of DIAMOND annotation.</p> <p>Excerpt of core DIAMOND function:<br><code>function NPEGC_diamond {</code><br><code># FASTA filename for $STUDY</code><br><code>FASTER_FASTA="NPac.${STUDY}.bf100.id99.aa.fasta"</code><br><code># Output filename for LCA results in lca.tab file:</code><br><code>LCA_TAB="NPac.${STUDY}.MarFERReT_v1.1_MMDB.lca.tab"</code><br><code>echo "Beginning ${STUDY}"</code><br><code>singularity exec --no-home --bind ${DATA_DIR} \</code><br><code>&nbsp; &nbsp; &nbsp; &nbsp; "${CONTAINER_DIR}/diamond.sif" diamond blastp \</code><br><code>&nbsp; &nbsp; &nbsp; &nbsp; -c 4 --threads $N_THREADS \</code><br><code>&nbsp; &nbsp; &nbsp; &nbsp; --db $MFT_MMDB_DMND_DB -e $EVALUE --top 10 -f 102 \</code><br><code>&nbsp; &nbsp; &nbsp; &nbsp; --memory-limit 110 \</code><br><code>&nbsp; &nbsp; &nbsp; &nbsp; --query ${FASTER_FASTA} -o ${LCA_TAB} &gt;&gt; "${STUDY}.MarFERReT_v1.1_MMDB.log" 2&gt;&amp;1</code><br><code>}</code><br><br>Corresponding files uploaded to this repository: Gzip-compressed diamond lowest common ancestor predictions with NCBI Taxonomy against a combined MarFERReT + MARMICRODB taxonomic library (*.Pfam35.domtblout.tab.gz)<br><em>&nbsp; &nbsp; NPac.G1PA.MarFERReT_v1.1_MMDB.lca.tab.gz</em><br><em>&nbsp; &nbsp; NPac.G2PA.MarFERReT_v1.1_MMDB.lca.tab.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA.MarFERReT_v1.1_MMDB.lca.tab.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA_diel.MarFERReT_v1.1_MMDB.lca.tab.gz</em><br><em>&nbsp; &nbsp; NPac.D1PA.MarFERReT_v1.1_MMDB.lca.tab.gz</em><br><br><strong>Pfam 35.0 functional annotation using HMMER3</strong><br>Clustered protein sequences were annotated against the Pfam 35.0 collection of 19,179 protein family Hidden Markov Models (HMMs) using&nbsp;<a href="http://hmmer.org/">HMMER 3.3 </a>&nbsp;with the <a href="https://academic.oup.com/nar/article/49/D1/D412/5943818">Pfam 35.0 protein family database</a>. Pfam annotation code is documented here: <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.hmmer_function.sh">NPEGC.hmmer_function.sh</a><br><br>Excerpt of core hmmsearch function:<br><br><code>function NPEGC_hmmer {</code><br><code># Define input FASTA</code><br><code>INPUT_FASTA="NPac.${STUDY}.bf100.id99.aa.fasta"</code><br><code># hmmsearch call:</code><br><code>hmmsearch --cut_tc --cpu $NCORES --domtblout $ANNOTATION_DIR/${STUDY}.Pfam35.domtblout.tab $HMM_PROFILE ${INPUT_FASTA}</code><br><code># compress output file:</code><br><code>gzip $ANNOTATION_DIR/${STUDY}.Pfam35.domtblout.tab</code><br><code>}</code><br><br>Corresponding files uploaded to this repository: Gzip-compressed hmmsearch domain table files for Pfam35 queries (*.Pfam35.domtblout.tab.gz)<br><em>&nbsp; &nbsp; G1PA.Pfam35.domtblout.tab.gz</em><br><em>&nbsp; &nbsp; G2PA.Pfam35.domtblout.tab.gz</em><br><em>&nbsp; &nbsp; G3PA.Pfam35.domtblout.tab.gz</em><br><em>&nbsp; &nbsp; G3PA_diel.Pfam35.domtblout.tab.gz</em><br><em>&nbsp; &nbsp; D1PA.Pfam35.domtblout.tab.gz</em><br><br></p> <p><strong>KEGG functional annotation using KofamScan v1.3.0</strong></p> <p>Clustered protein sequences were annotated against the KEGG collection (release 104.0) of 20,819 protein family Hidden Markov Models (HMMs) using <a href="https://github.com/takaram/kofam_scan" target="_blank" rel="noopener">KofamScan </a>and KofamKOALA. Kofam annotation code is documented here: <a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.kofamscan_function.sh">NPEGC.kofamscan_function.sh</a></p> <p>Excerpt of core NPEGC_kofam function:</p> <p><code># Core function to perform KofamScan annotation</code><br><code>function NPEGC_kofam {</code><br><code>&nbsp; &nbsp; # Define input FASTA</code><br><code>&nbsp; &nbsp; local INPUT_FASTA="NPac.${STUDY}.bf100.id99.aa.fasta"</code></p> <p><code>&nbsp; &nbsp; # KofamScan call</code><br><code>&nbsp; &nbsp; ${KOFAM_DIR}/kofam_scan-1.3.0/exec_annotation -f detail-tsv -E ${EVALUE} -o ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.tsv ${FASTA_DIR}/${INPUT_FASTA}</code></p> <p><code>&nbsp; &nbsp; # Keep best hit (data is already sorted by KofamScan)</code><br><code>&nbsp; &nbsp; sort -uk1,1 ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.tsv &gt; ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.best.kofam.tsv</code></p> <p><code>&nbsp; &nbsp; # Compress output file</code><br><code>&nbsp; &nbsp; gzip ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.tsv</code></p> <p><code>&nbsp; &nbsp; # Compress best.kofam output file</code><br><code>&nbsp; &nbsp; gzip ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.best.kofam.tsv</code><br><code>}</code></p> <p><br><code># filter hits with a score &gt; 30 in R</code></p> <p>Corresponding files uploaded to this repository: Gzip-compressed KofamScan domain table files for Kofam queries (*.best.Kofam.incT30.csv.gz):<em><br>&nbsp; &nbsp; NPac.G1PA.bf100.id99.aa.best.Kofam.incT30.csv.gz</em><em><br>&nbsp; &nbsp; NPac.G2PA.bf100.id99.aa.best.Kofam.incT30.csv.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA.UW.bf100.id99.aa.best.Kofam.incT30.csv.gz</em><br><em>&nbsp; &nbsp; NPac.G3PA.diel.bf100.id99.aa.best.kofam.incT30.csv.gz</em><br><em>&nbsp; &nbsp; NPac.D1PA.diel.bf100.id99.aa.best.kofam.incT30.csv.gz<br><br></em>The full kofamscan tables with score &gt;30 are deposited here:&nbsp;<a title="The North Pacific Eukaryotic Gene Catalog: KOfam protein function annotations" href="../records/13743267" target="_blank" rel="noopener">https://zenodo.org/records/13743267</a></p>

opencc-by-4.0Jan 2024View details →
zenodo40/100

Genome assembly and annotation of an apple variety 'RubyMac'

<p>In this dataset, we provided the contig-level genome assembly and annotation of an apple tree called 'RubyMac', which is growing in Michigan, USA (43&deg;04'53.1"N 85&deg;43'13.5"W). In this tree, the upper branches carried a sport mutation as compared with lower branches.</p>

opencc-by-4.0Aug 2024View details →
zenodo40/100

MapReader_railspace_and_building_annotations_2024

<p><strong>This record contains post-processed railspace and building annotations relating to&nbsp;MapReader in GeoHumanities workshop (SIGSPATIAL 2022). </strong>The original data can be found at <a href="../records/7147906">https://zenodo.org/records/7147906</a>.</p> <p>See&nbsp;<code>README.md</code> for detailed description of this record.</p> <p>&nbsp;</p>

opencc-by-4.0May 2024View details →
zenodo40/100

ChessRender360: High-Fidelity Rendered Chess Dataset with Multi-Modal Annotations

<p>ChessRender360 is a synthetically crafted dataset featuring 10,000 rendered chess positions. Designed for computer vision and machine learning research, this dataset provides a rich collection of RGB images, depth maps, instance masks, and semantic segmentation masks for each chess piece and board element.</p> <p>Each chess position is rendered in high resolution (2000x2000 pixels), capturing the intricate details of the board and pieces from various angles. The dataset includes:</p> <ul> <li><strong>RGB Images:</strong> High-quality rendered images of chess positions, showcasing a diverse range of board configurations.</li> <li><strong>Depth Maps:</strong> Accurate depth representations of the scene, capturing depth in the range of 20 cm to 120 cm. In the depth maps, black corresponds to a depth of 20 cm, and white corresponds to 120 cm, providing spatial information for each position.</li> <li><strong>Instance Masks:</strong> Unique instance masks for each chess piece, enabling precise identification and localization.</li> <li><strong>Semantic Segmentation Masks:</strong> Segmentation masks that differentiate between piece types and board elements, with distinct hue values assigned to each type.</li> <li><strong>Bounding Boxes:</strong>&nbsp;Each sample has an annotation&nbsp;<code>.json</code>&nbsp;file containing bounding boxes for each piece.</li> <li><strong>Board Corners:</strong>&nbsp;Same annotation&nbsp;<code>.json</code>&nbsp;contains positions of corners of the board in order: white left, white right, black left, black right.</li> <li><strong>FENs:</strong> A CSV file containing the FEN (Forsyth-Edwards Notation) for each chess position in the dataset, listed in order. This allows users to easily recognize and replicate the exact board position from any image.</li> </ul> <p><strong>Bounding Box Generation:</strong></p> <ul> <li>The dataset does not include predefined bounding boxes, but they can be easily generated from the provided semantic and instance masks. This allows for flexible bounding box creation tailored to specific research needs.</li> </ul> <p><strong>Rendering Details:</strong></p> <ul> <li><strong>3D Models and Materials:</strong> The dataset uses a consistent set of 3D models for all chess pieces, with three different material/color schemes applied across the dataset, along with random perturbations in material brightness, contrast and saturation to introduce visual variety.</li> <li><strong>Camera Angles:</strong> Camera angles are randomly selected, with yaw ranging from 0 to 360 degrees and pitch between 30 to 80 degrees, providing diverse perspectives of the chess positions.</li> <li><strong>Background Variability:</strong> The chessboard is randomly placed on different types of tables, with the floor material randomly sampled to create a variety of backgrounds.</li> <li><strong>Lighting:</strong> Lighting conditions are randomly generated, adding further diversity and realism to the rendered scenes.</li> </ul> <p><strong>Augmentation Potential:</strong></p> <ul> <li>The instance and semantic masks can be used to further augment the dataset. Researchers can selectively modify specific parts of the images&mdash;such as the board, background, or individual pieces&mdash;enabling the creation of new variations and enhancing the dataset's utility for model training and testing.</li> </ul> <p><strong>Color Mapping:</strong></p> <ul> <li>The semantic masks are color-coded using a hue-based system, where the board frame, squares, and each piece type are assigned specific hues. Instances of the same piece type are differentiated by varying the value component, with saturation consistently set to 1. A detailed <code>color_mapping.json</code> file is included, providing a comprehensive guide to interpreting the masks.</li> </ul> <p><strong>Applications:</strong> ChessRender360 is ideal for tasks such as object detection, instance segmentation, depth estimation, and scene understanding in synthetic environments. Researchers and developers can leverage this dataset for training and evaluating models in computer vision, robotics, and artificial intelligence.</p> <p><strong>Dataset Highlights:</strong></p> <ul> <li>10,000 uniquely rendered chess positions</li> <li>High-resolution images (2000x2000 pixels) with diverse visual characteristics</li> <li>Comprehensive annotations with RGB, depth (20 cm to 120 cm), instance, and semantic maps</li> <li>Side identification map for distinguishing white and black sides of the board</li> <li>FEN notation CSV file for easy position recognition and replication</li> <li>Variety introduced through different material schemes and lighting setups</li> <li>Randomized camera angles for enhanced perspective diversity</li> <li>Potential for further augmentation by modifying specific image components</li> <li>Detailed color mapping for easy interpretation of segmentation masks</li> <li>Suitable for a wide range of computer vision and AI applications</li> </ul> <p>ChessRender360 offers a rich and versatile dataset for advancing research and development in the field of computer vision, providing a synthetic yet highly realistic environment for model training and testing.</p> <p>For any questions, feedback, or collaboration opportunities, or if you are interested in custom artificial datasets, please contact me:</p> <ul> <li><strong>Name:</strong> Marko Kojić</li> <li><strong>LinkedIn:</strong> https://www.linkedin.com/in/mmkoya</li> </ul> <p>I welcome inquiries from researchers, developers, and organizations interested in utilizing or collaborating on artificial datasets.</p>

opencc-by-4.0Aug 2024View details →
zenodo40/100

FIG. 12 in Récolnat Annotate-On: a tool to improve your experience with virtual collections

FIG. 12. — Workflow of the Annotate-On tool. A project allows the study, annotation and measurement of objects within images from the Récolnat database, URLs or any hard-drive to constitute a library. It uses one or more of the data models defined previously. Key words are used to select subsets within the library and the results can be exported to various external data processing tools.

opencc-by-4.0Aug 2024View details →
zenodo40/100

FIG. 15 in Récolnat Annotate-On: a tool to improve your experience with virtual collections

FIG. 15. — Scales on Paris herbarium sheets. The vertical line on the left measures 10 mm, on the right the label of the linear barcodes measures 50 mm in length. In addition, the photos of the nomenclatural types have a scale.

opencc-by-4.0Aug 2024View details →
zenodo40/100

FIG. 13 in Récolnat Annotate-On: a tool to improve your experience with virtual collections

FIG. 13. — Definition of a new character ("apex angle") for the model "Asparagus", here a physical measurement (angle unity: "°") into the group named "Cladode".

opencc-by-4.0Aug 2024View details →
zenodo40/100

FIG. 9 in Récolnat Annotate-On: a tool to improve your experience with virtual collections

FIG. 9. — Annotation of a categorical character "apex shape" with the character state or nominal value "accuminate" (red arrow).

opencc-by-4.0Aug 2024View details →
zenodo40/100

FIG. 1 in Récolnat Annotate-On: a tool to improve your experience with virtual collections

FIG. 1. — Examples of mean (M) and standard deviation (SD). Two characters: blade length (FII L) and blade width (fll- larg), number of measures (#). First line: image measures; second line: batch measures (global value).

opencc-by-4.0Aug 2024View details →
zenodo40/100

Self-Annotated Wearable Activity Data

<p>Our dataset contains 2 weeks of approx. 8-9 hours of acceleration data per day from 11 participants wearing a <a href="https://shop.espruino.com/banglejs">Bangle.js Version 1</a> smartwatch with our <a href="https://github.com/kristofvl/BangleApps/tree/master/apps/activate_test">firmware</a> installed.</p> <p>The dataset contains annotations from&nbsp; 4 different commonly used annotation methods utilized in user studies that focus on in-the-wild data. These methods can be grouped in user-driven, in situ annotations - which are performed before or during the activity is recorded - and recall methods - where participants annotate their data in hindsight at the end of the day.</p> <p>The participants had the task to label their activities using (1) a button located on the smartwatch, (2) the activity tracking app <a href="https://www.strava.com/">Strava</a>, (3) a (hand)written diary and (4) a tool to visually inspect and label activity data, called <a href="https://github.com/mad-lab-fau/mad-gui">MAD-GUI</a>. Methods (1)-(3) are used in both weeks, however method (4) is introduced in the beginning of the second study week.</p> <p>The accelerometer data is recorded with 25 Hz, a sensitivity of &plusmn;8g and is stored in a csv format. Labels and raw data are not yet combined. You can either write your own script to label the data or follow the instructions in our corresponding <a href="https://github.com/ahoelzemann/annotationMatters">Github repository.</a></p> <p>The following unique classes are included in our dataset:</p> <p>laying, sitting, walking, running, cycling, bus_driving, car_driving, vacuum_cleaning, laundry, cooking, eating, shopping, showering, yoga, sport, playing_games, desk_work, guitar_playing, gardening, table_tennis, badminton, horse_riding.</p> <p>However, many activities are very participant specific and therefore only performed by one of the participants.</p> <p>The labels are also stored as a .csv file and have the following columns:</p> <p><strong>week_day, start, stop, activity, layer</strong></p> <p>Example:</p> <p>week2_day2,10:30:00,11:00:00,vacuum_cleaning,d</p> <p>The <em>layer</em> columns specifies which annotation method was used to set this label.</p> <p>The following identifiers can be found in the column:</p> <p>b: in situ <strong>button</strong></p> <p>a: in situ <strong>app</strong></p> <p>d: self-recall <strong>diary</strong></p> <p>g: time-series recall labelled with a the <strong>MAD-GUI</strong></p> <p>&nbsp;</p> <p>The corresponding publication is currently under review.</p>

opencc-by-4.0Feb 2023View details →
zenodo40/100

The North Pacific Eukaryotic Gene Catalog: KOfam protein function annotations

<p><strong>KEGG functional annotation using KofamScan v1.3.0</strong></p> <p>These tables are larger alternative versions to the KOfam tables included in the North Pacific Eukaryotic Gene Catalog protein data repository here: <a href="../records/12630398">https://zenodo.org/records/12630398</a><br><br>A full description of this data is published in Scientific Data, available here: <a href="https://www.nature.com/articles/s41597-024-04005-5" target="_blank" rel="noopener">The North Pacific Eukaryotic Gene Catalog of metatranscriptome assemblies and annotations</a>. Please cite this publication if your research uses this data:<br><br>Groussman, R. D., Coesel, S. N., Durham, B. P., Schatz, M. J., &amp; Armbrust, E. V. (2024). The North Pacific Eukaryotic Gene Catalog of metatranscriptome assemblies and annotations. <em>Scientific Data</em>, <em>11</em>(1), 1161.<br><br>Clustered protein sequences were annotated against the KEGG collection (release 104.0) of 20,819 protein family Hidden Markov Models (HMMs) using <a href="https://github.com/takaram/kofam_scan" target="_blank" rel="noopener">KofamScan </a>and KofamKOALA. Kofam annotation code is documented in the project github repository here:&nbsp;<a href="https://github.com/armbrustlab/NPac_euk_gene_catalog/blob/main/scripts/aa_data/NPEGC.kofamscan_function.sh">NPEGC.kofamscan_function.sh</a></p> <p>Excerpt of core NPEGC_kofam function:</p> <p><code># Define input FASTA</code><br><code>local INPUT_FASTA="NPac.${STUDY}.bf100.id99.aa.fasta"</code></p> <p><code># KofamScan call</code><br><code>${KOFAM_DIR}/kofam_scan-1.3.0/exec_annotation -f detail-tsv -E ${EVALUE} -o ${ANNOTATION_DIR}/NPac.${STUDY}.bf100.id99.aa.tsv ${FASTA_DIR}/${INPUT_FASTA}</code></p> <p>Unprocessed annotation results were filtered with a minimum score of 30 to remove low-scoring matches:<br><br><code>zcat NPac.<em><u>NPacID</u></em>.kofam.tsv.gz | awk -F'\t' '{ gsub(/"/, "", $5); $5 = $5 + 0; if ($5 &gt;= 30) print }' | gzip &gt; NPac.<em><u>NPacID</u></em>.UW.bf100.id99.aa.incT30.tsv.gz</code></p>

opencc-by-4.0Sep 2024View details →
zenodo40/100

MTClass: Identification and annotation of multi-phenotype cis-eQTLs using machine learning

<p>This dataset contains the aggregated results from three iterations of MTClass. Brief descriptions of the file names are below:</p> <ul> <li><strong>multi-tissue.zip</strong>: Multi-tissue study containing the 9-tissue, 13 brain tissue, and 48-tissue results from MTClass, MultiPhen, and MANOVA</li> <li><strong>multi-exon.zip</strong>: Multi-exon study containing the multi-exon results from the 13 individual brain tissues (MTClass, MultiPhen, and MANOVA for each tissue)</li> <li><strong>2D_exon_tissue.zip</strong>: Multi-tissue/multi-exon combined eQTL study, done in 9 tissues using multi-layer perceptron. MTClass was only run once on this dataset due to the relatively higher computational burden.</li> <li><strong>PsychENCODE_isoQTL.zip</strong>: Multi-isoform eQTL study, done in human prefrontal cortex using PsychENCODE data.</li> <li><strong>OneK1K_scRNAseq.zip</strong>: Multi-cell-type eQTL study, done using scRNA-seq data from the OneK1K cohort.</li> </ul>

opencc-by-4.0Jul 2023View details →
zenodo40/100

ProtNote: a multimodal method for protein-function annotation

<div> <div>Understanding protein sequence-function relationships is essential for advancing protein biology and engineering.&nbsp;However, fewer than 1% of known protein sequences have human-verified functions, and scientists continually update&nbsp;the set of possible functions. While deep learning methods have demonstrated promise for protein function prediction,&nbsp;current models are limited to predicting only those functions on which they were trained. Here, we introduce ProtNote,&nbsp;a multimodal deep learning model that leverages free-form text to enable both supervised and zero-shot protein function&nbsp;prediction. ProtNote not only maintains near state-of-the-art performance for annotations in its train set, but also&nbsp;generalizes to unseen and novel functions in zero-shot test settings. We envision that ProtNote will enhance protein&nbsp;function discovery by enabling scientists to use free text inputs, without restriction to predefined labels &ndash; a necessary&nbsp;capability for navigating the dynamic landscape of protein biology.</div> </div>

openmit-licenseOct 2024View details →
zenodo40/100

Linked collectors and determiners for: An annotated distributional checklist of Vespidae (Hymenoptera: Vespoidea) of India.

Natural history specimen data linked to collectors and determiners held within, "An annotated distributional checklist of Vespidae (Hymenoptera: Vespoidea) of India". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/4d93f591-1785-4eea-9b96-49b782137498">https://bionomia.net/dataset/4d93f591-1785-4eea-9b96-49b782137498</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/4d93f591-1785-4eea-9b96-49b782137498">https://gbif.org/dataset/4d93f591-1785-4eea-9b96-49b782137498</a>. Formatted as a Frictionless Data package.

opencc-zeroJan 2024View details →
zenodo40/100

Linked collectors and determiners for: An annotated catalogue of Elachistinae of the World (Lepidoptera: Gelechioidea: Elachistidae).

Natural history specimen data linked to collectors and determiners held within, "An annotated catalogue of Elachistinae of the World (Lepidoptera: Gelechioidea: Elachistidae)". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/e0aabdb8-bda6-48e4-bdef-f7b64577d5cd">https://bionomia.net/dataset/e0aabdb8-bda6-48e4-bdef-f7b64577d5cd</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/e0aabdb8-bda6-48e4-bdef-f7b64577d5cd">https://gbif.org/dataset/e0aabdb8-bda6-48e4-bdef-f7b64577d5cd</a>. Formatted as a Frictionless Data package.

opencc-zeroJan 2024View details →
zenodo40/100

Linked collectors and determiners for: An annotated list of the Lepidoptera of Alberta, Canada.

Natural history specimen data linked to collectors and determiners held within, "An annotated list of the Lepidoptera of Alberta, Canada". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/aa97d560-1969-4b79-93bb-2614b7835c0e">https://bionomia.net/dataset/aa97d560-1969-4b79-93bb-2614b7835c0e</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/aa97d560-1969-4b79-93bb-2614b7835c0e">https://gbif.org/dataset/aa97d560-1969-4b79-93bb-2614b7835c0e</a>. Formatted as a Frictionless Data package.

opencc-zeroJan 2024View details →
zenodo40/100

Linked collectors and determiners for: An annotated checklist of the earthworm fauna of Turkey (Oligochaeta: Lumbricidae).

Natural history specimen data linked to collectors and determiners held within, "An annotated checklist of the earthworm fauna of Turkey (Oligochaeta: Lumbricidae)". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/6bf97383-b199-4676-96bd-49d292d4bde7">https://bionomia.net/dataset/6bf97383-b199-4676-96bd-49d292d4bde7</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/6bf97383-b199-4676-96bd-49d292d4bde7">https://gbif.org/dataset/6bf97383-b199-4676-96bd-49d292d4bde7</a>. Formatted as a Frictionless Data package.

opencc-zeroJan 2024View details →
zenodo40/100

Linked collectors and determiners for: Rediscovery of Obeliscus agassizi Pilsbry, 1906 (Gastropoda, Subulinidae, Obeliscinae), annotated checklist of species of Obeliscus Beck, 1837 and first description of the anatomy for the genus.

Natural history specimen data linked to collectors and determiners held within, "Rediscovery of Obeliscus agassizi Pilsbry, 1906 (Gastropoda, Subulinidae, Obeliscinae), annotated checklist of species of Obeliscus Beck, 1837 and first description of the anatomy for the genus". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/5920d575-69e3-45ef-bf81-10859e823214">https://bionomia.net/dataset/5920d575-69e3-45ef-bf81-10859e823214</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/5920d575-69e3-45ef-bf81-10859e823214">https://gbif.org/dataset/5920d575-69e3-45ef-bf81-10859e823214</a>. Formatted as a Frictionless Data package.

opencc-zeroJan 2024View details →
zenodo40/100

Linked collectors and determiners for: Annotated checklist of Afrotropical Trogolaphysa Mills, 1938 (Hexapoda: Collembola: Paronellidae) and description of a new species from Madagascar.

Natural history specimen data linked to collectors and determiners held within, "Annotated checklist of Afrotropical Trogolaphysa Mills, 1938 (Hexapoda: Collembola: Paronellidae) and description of a new species from Madagascar". Claims or attributions were made on Bionomia by volunteer Scribes, <a href="https://bionomia.net/dataset/ea3961a2-6410-4963-9e03-af59316cac6d">https://bionomia.net/dataset/ea3961a2-6410-4963-9e03-af59316cac6d</a> using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, <a href="https://gbif.org/dataset/ea3961a2-6410-4963-9e03-af59316cac6d">https://gbif.org/dataset/ea3961a2-6410-4963-9e03-af59316cac6d</a>. Formatted as a Frictionless Data package.

opencc-zeroJul 2024View 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