https://github.com/alrobles/cofid

Copepod fish interaction database

https://github.com/alrobles/cofid

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.0%) to scientific vocabulary
Last synced: 9 months ago · JSON representation

Repository

Copepod fish interaction database

Basic Info
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 2 years ago · Last pushed 11 months ago
Metadata Files
Readme License

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```

![Caption for the picture.](man/figures/cofid-logo-2.png)



This R packages contains an expert curated Copepod Fish database. This database
was taxonomically curated by [Francisco Neptalí Morales-Serna](https://orcid.org/0000-0002-2577-5369).
The data cleaning, standarization and wrapping as an R packages was done by [Ángel Luis Robles-Fernandez](https://orcid.org/0000-0002-4674-4270) 


## Installation

Install from CRAN:
``` r 
install.packages("cofid")
```

You can install the development version of cofid from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("alrobles/cofid")
# load the data to your environment
data(cofid, "cofid")

```

## Dataset

The dataset contains $10, 344$ copepod - fish interaction records. The fields in the data set
are:

* source_taxon_external_id: the id number provided by [World Register of Marine Species](https://www.marinespecies.org/)
* source_taxon_name: The scientific name of the copepod species
* source_taxon_path: Taxonomical hierarchy of the copepod. Only contains 7 levels 
* source_specimen_life_stage: The life stage of the record
* interaction_type: The type of interaction between copepod and fish
The records are mainly ectoparasitic (7654). There are 74 endoparasitic and 7 parasitic
* target_taxon_external_id: The host fish id number provided by [World Register of Marine Species](https://www.marinespecies.org/)
* target_taxon_name: Host fish species scientific name
* target_taxon_path: Taxonomical hierarchy of the host fish. Only contains 7 levels
* study_citation: Original study where the record cand be found

## Functionality
`cofid` R package has two helping funtions.
* `getCopepods` let the user filter the dataset given a family, genus or species of copepod

```{r, include = TRUE}
library(cofid)
Caligus <- getCopepods(genus = "Caligus")
head(Caligus)
```
In addition, the user can also retrive the data withouth citation
for convenience:

```{r, include = TRUE}
Caligidae <- getCopepods(family = "Caligidae", citation = FALSE)
head(Caligidae)
```

* `getFish` let the user filter the dataset given a family, genus or species of fish:

```{r exampleFish}
library(cofid)
Molva_molva <- getFish(species = "Molva molva", citation = FALSE)
head(Molva_molva)
```

## Online access

You can try online the dataset.





Owner

  • Name: Angel Luis Robles Fernández
  • Login: alrobles
  • Kind: user
  • Location: Xalapa Mexico
  • Company: Vida Analytics

PhD student at Arizona State University

GitHub Events

Total
  • Push event: 4
Last Year
  • Push event: 4

Dependencies

.github/workflows/pkgdown.yaml actions
  • JamesIves/github-pages-deploy-action v4.5.0 composite
  • actions/checkout v4 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION cran
  • R >= 2.10 depends