Usage Arguments Value Author(s) Examples
1 | select_reefish_species(prparedResBold.fishbaseValid, reefishSurveySpecies, countSequencesbySpeciesThreshold=2)
|
prparedResBold.fishbaseValid |
A curated dataframe generated by |
reefishSurveySpecies |
A dataframe describing reef fish species abundance and biomass for 7100 spatial survey geographical position and 11 columns including "TAXONOMIC_NAME" |
countSequencesbySpeciesThreshold |
a numeric value (default value = 2), species with a number of sequences equal or lower than this threshold are filtered out |
A dataframe with individual sequences as row and 81 descriptors as column. Species who are not in Reef Life Survey database has been removed.
Pierre-Edouard GUERIN, Stephanie MANEL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## load BOLD specimen and sequence data with matching taxa "Pomacanthidae"
data(requestPomacanthidaeBOLD)
## load RLS species data
data(reefishSurveySpecies)
## filter and mutate
prparedResBold <- prepare_bold_res(resBold,
marker_code="COI-5P",
species_names=TRUE,
coordinates=TRUE,
ambiguities=TRUE,
min_length=420,
max_length=720
)
## validate species names
prparedResBold.fishbaseValid <- fishbase_name_species_bold(prparedResBold)
reefishBold <- select_reefish_species(prparedResBold.fishbaseValid,
reefishSurveySpecies,
countSequencesbySpeciesThreshold=2
)
print(reefishBold)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.