Skip to content

Commit

Permalink
Update README.md pkiraly#270
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed May 16, 2023
1 parent b7f205f commit 87c1e68
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,13 +426,14 @@ Most of the analyses uses the following general parameters
the structure of PICA records
* `-G <path>`, `--picaRecordType <path>` The PICA subfield which stores the
record type information. Deafult is `002@$0`.
* Parameters for groupping analyses
* `-J <path>`, `--groupBy <path>` group the results by the value of this data
element (e.g. the ILN of library)
* `-K <file>`, `--groupListFile <file>` the file which contains a list of ILN codes

The last argument of the commands are a list of files. It might contain any
wildcard the operating system supports ('*', '?', etc.).

#### PICA related general parameters


### Validating MARC records

It validates each records against the MARC21 standard, including those local
Expand Down Expand Up @@ -1729,6 +1730,18 @@ docker login
docker push pkiraly/metadata-qa-marc:latest
```

Cleaning before and after:
```bash
# stop running container
docker stop $(docker ps --filter name=metadata-qa-marc -q)
# remove container
docker rm $(docker ps -a --filter name=metadata-qa-marc -q)
# remove image
docker rmi $(docker images metadata-qa-marc -q)
# clear build cache
docker builder prune -a -f
```

Feedbacks are welcome!

[![Build Status](https://travis-ci.org/pkiraly/metadata-qa-marc.svg?branch=main)](https://travis-ci.org/pkiraly/metadata-qa-marc)
Expand Down

0 comments on commit 87c1e68

Please sign in to comment.