-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aede5a5
commit 28529c3
Showing
5 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Building schneider2021re | ||
/Users/koustuvs/Documents/RC-2020/schneider2021re/journal | ||
Building li2021reimplementation | ||
/Users/koustuvs/Documents/RC-2020/li2021reimplementation/journal | ||
Building sundar2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/sundar2021reproducibility/journal | ||
Building mizrahi2021re | ||
/Users/koustuvs/Documents/RC-2020/mizrahi2021re/journal | ||
Building menon2021re | ||
/Users/koustuvs/Documents/RC-2020/menon2021re/journal | ||
Building mentes2021re | ||
/Users/koustuvs/Documents/RC-2020/mentes2021re/journal | ||
Building baanders2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/baanders2021reproducibility/journal | ||
Building holdijk2021re | ||
/Users/koustuvs/Documents/RC-2020/holdijk2021re/journal | ||
Building kim2021re | ||
/Users/koustuvs/Documents/RC-2020/kim2021re/journal | ||
Building rijsdijk2021reproducing | ||
/Users/koustuvs/Documents/RC-2020/rijsdijk2021reproducing/journal | ||
Building mohtashami2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/mohtashami2021reproducibility/journal | ||
Building verhoef2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/verhoef2021reproducibility/journal | ||
Building harrison2021learning | ||
/Users/koustuvs/Documents/RC-2020/harrison2021learning/journal | ||
Building arvind2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/arvind2021reproducibility/journal | ||
Building verma2021explaining | ||
/Users/koustuvs/Documents/RC-2020/verma2021explaining/journal | ||
Building sheverdin2021reproducibility | ||
/Users/koustuvs/Documents/RC-2020/sheverdin2021reproducibility/journal | ||
Building verhoeven2021replication | ||
/Users/koustuvs/Documents/RC-2020/verhoeven2021replication/journal | ||
Building garg2021re | ||
/Users/koustuvs/Documents/RC-2020/garg2021re/journal | ||
Building albanis2021on | ||
/Users/koustuvs/Documents/RC-2020/albanis2021on/journal | ||
Building liiv2021a | ||
/Users/koustuvs/Documents/RC-2020/liiv2021a/journal | ||
Building rodas2021rehamiltonian | ||
/Users/koustuvs/Documents/RC-2020/rodas2021rehamiltonian/journal | ||
Building p2021embedkgqa | ||
/Users/koustuvs/Documents/RC-2020/p2021embedkgqa/journal | ||
Building reijnaers2021re | ||
/Users/koustuvs/Documents/RC-2020/reijnaers2021re/journal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
|
||
build_open() { | ||
rm metadata.tex | ||
make clean | ||
make | ||
cleanup_dir | ||
open article.pdf | ||
} | ||
|
||
cleanup_dir() { | ||
rm article.aux | ||
rm article.bbl | ||
rm article.blg | ||
rm article.fdb_latexmk | ||
rm article.fls | ||
rm article.out | ||
rm article.log | ||
rm article.run.xml | ||
rm article.bcf | ||
} | ||
|
||
|
||
inp=$1 | ||
echo $inp | ||
if [ $inp = 'editorial' ]; then | ||
echo "Editorial processing" | ||
cd editorial/ | ||
build_open | ||
else | ||
echo "Paper $inp processing" | ||
cd $inp/journal/ | ||
build_open | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
cleanup_dir() { | ||
rm article.aux | ||
rm article.bbl | ||
rm article.blg | ||
rm article.fdb_latexmk | ||
rm article.fls | ||
rm article.out | ||
rm article.log | ||
rm article.run.xml | ||
rm article.bcf | ||
} | ||
|
||
inp=$1 | ||
echo $inp | ||
if [ $inp = 'editorial' ]; then | ||
echo "Editorial processing" | ||
cd editorial/ | ||
cleanup_dir | ||
else | ||
echo "Paper $inp processing" | ||
cd $inp/journal/ | ||
cleanup_dir | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
MODE=sandbox | ||
inp=$1 | ||
echo $inp | ||
|
||
# Prepublish article | ||
# if [ $inp = 'editorial' ]; then | ||
# echo "Editorial processing" | ||
# ./../articles/process.py --$MODE --metadata editorial/metadata.yaml --pdf editorial/article.pdf | ||
# else | ||
# echo "Paper $inp processing" | ||
# loc=$inp/journal/ | ||
# ./../articles/process.py --$MODE --metadata $loc/metadata.yaml --pdf $loc/article.pdf | ||
|
||
# fi | ||
|
||
# Publish articles | ||
|
||
if [ $inp = 'editorial' ]; then | ||
echo "Editorial processing" | ||
./../articles/publish.py --$MODE --metadata editorial/metadata.yaml --pdf editorial/article.pdf | ||
else | ||
echo "Paper $inp processing" | ||
loc=$inp/journal/ | ||
./../articles/publish.py --$MODE --metadata $loc/metadata.yaml --pdf $loc/article.pdf | ||
|
||
fi | ||
|
||
|