mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-10 14:59:23 +09:00
update: docs (main index.md and docstrring)
This commit is contained in:
parent
33ac8d0a34
commit
96239dd489
2 changed files with 27 additions and 0 deletions
|
@ -13,6 +13,26 @@ include("create_table.jl")
|
|||
|
||||
include("import_data.jl")
|
||||
|
||||
"""
|
||||
create_database_from_exported_csvs(
|
||||
dbpath::AbstractString;
|
||||
single_run_csv::AbstractString,
|
||||
runlist_csv::AbstractString,
|
||||
dispatch_csv::AbstractString,
|
||||
hundred_csv::AbstractString,
|
||||
masterlog_dir::AbstractString,
|
||||
)
|
||||
|
||||
Create database at `dbpath` and import data from CSV and master log files.
|
||||
|
||||
# Arguments
|
||||
- `dbpath`: where the database will be created
|
||||
- `single_run_csv`: CSV of single run results exported from the Google sheets database
|
||||
- `runlist_csv`: CSV of run lists exported from the Google sheets database
|
||||
- `dispatch_csv`: CSV of dispatch lists exported from the Google sheets database
|
||||
- `hundred_csv`: CSV of 100 tests results exported from the Google sheets database
|
||||
- `masterlog_dir`: path to the directory (`log`) where all JATHub master log is stored
|
||||
"""
|
||||
function create_database_from_exported_csvs(
|
||||
dbpath::AbstractString;
|
||||
single_run_csv::AbstractString,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue