Hi R-scape team,
These notes are based on my build experience with R-scape (v2.6.4.b).
1. Possible long-option typo around --ntree
File: 'src/R-scape.c'
Location: around line ~788 (v2.6.4.b)
I noticed the long option for the tree number appears to use a single dash:
Current in code: '-ntree'
Expected: '--ntree'
2. TORNADO build may require manual parser generation + low parallelism
2.1 Manually generate the parser files under 'lib/tornado/src'
'''
cd ~/phyloRNA/tools/rscape_v2.6.4.b
make
cd ~/phyloRNA/tools/rscape_v2.6.4.b/lib/tornado/src
make clean
bison -d -o grm_parsegrammar.tab.c grm_parsegrammar.y
ls -l grm_parsegrammar.tab.h grm_parsegrammar.tab.c
make -j1
cd ~/phyloRNA/tools/rscape_v2.6.4.b
make clean
make -j
'''
Thanks!