aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-12-28 16:10:11 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-12-28 16:16:17 +0000
commit33f4c1eceea4e31a7c3ea12d52c1f56824c49d81 (patch)
treeef660b0842b02379859f69c3eeed3d89b25fe770 /project
parent326adfb529043b9b93665752f5516d1f853ba95d (diff)
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.
Diffstat (limited to 'project')
-rwxr-xr-xproject4
1 files changed, 3 insertions, 1 deletions
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