Skip to content
Snippets Groups Projects
Commit 8b0dd7f1 authored by Lili Gasser's avatar Lili Gasser
Browse files

renkufy bash file

parent babfb25f
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
year_start=1891 year_start=$1
year_end=1891 year_end=$2
for year in $(seq $year_start $year_end) for year in $(seq $year_start $year_end)
do do
...@@ -14,6 +14,5 @@ do ...@@ -14,6 +14,5 @@ do
input_overlaps=data/lists/dict_overlaps.pickle input_overlaps=data/lists/dict_overlaps.pickle
output_annotatedxml=data/AB/${year}/05_annotatedxml.tar.gz output_annotatedxml=data/AB/${year}/05_annotatedxml.tar.gz
# renku run --isolation renku run --isolation python src/python/run_extract_discussions.py $input_lastnames $input_correctedxml $input_correctedmeta $input_notnames $input_overlaps $output_annotatedxml
python src/python/run_extract_discussions.py $input_lastnames $input_correctedxml $input_correctedmeta $input_notnames $input_overlaps $output_annotatedxml
done done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment