From 33f4c1eceea4e31a7c3ea12d52c1f56824c49d81 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 28 Dec 2020 16:10:11 +0000 Subject: Minor edits, updated citation to published Menke+20 paper Some minor edits were made to the paper to shorten it. In particular the example of IPOL was removed from the main body of the paper, and we'll just rely on the more extensive review of IPOL in the appendix. I also updated the referee report to account for the new Appendix A that is just an extended introduction. Also, I noticed that the Menke+20 paper that we replicate here has recently been published in the iScience journal. So its bibliography was updated from the bioarXiv information to the journal information. Also, the number of words (after removing abstract and captions and accounting for figures) is now only printed when the project is built with '--no-appendix'. This was done because this information is extra/annoying/unnecessary for the case where there is an appendix. --- project | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'project') diff --git a/project b/project index cdace62..e53bcf0 100755 --- a/project +++ b/project @@ -507,7 +507,9 @@ case $operation in numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w) numeff=$(echo $numwords | awk '{print $1-850+500}') echo; echo "Number of words in full PDF: $numwords" - echo "No abstract, and captions (250 for each figure): $numeff" + if [ $noappendix = 1 ]; then + echo "No abstract, and captions (250 for each figure): $numeff" + fi rm paper.txt fi fi -- cgit v1.2.1