-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecies_list.py
21 lines (18 loc) · 1.22 KB
/
species_list.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###############################################################################
# __ _ ___ ____ #
# / _| ___ _ __ _ __ ___ (_) ___|_ _| _ \ #
# | |_ / _ \| '__| '_ ` _ \| |/ __|| || | | | #
# | _| (_) | | | | | | | | | (__ | || |_| | #
# |_| \___/|_| |_| |_| |_|_|\___|___|____/ #
# #
# Get species list #
# #
###############################################################################
"""Description:
Script to create a csv file with the species that are imaged the most. As of now, the list is not entirely correct, as some specimens have extra images, like close-ups and these also count as images.
"""
# Packages
###############################################################################
# FormicID imports
from AntWeb.AW2_to_json import most_imaged_species_to_csv
most_imaged_species_to_csv("Get_list_test.csv", min_images=68)