The Exome Coverage and Identification Report displays the coverage of every target region in your capture design. It also displays regions below an adjustable coverage threshold.
14
stars
5
forks
source link
ExCID.grep_gene_list_pct_Final-miRNA.pl and ExCID.grep_gene_list_pct_Final.pl ignore Config.txt and expect databases to be in $script_dir/database/ #5
I'm guessing y'all keep your DataBaseDir in Config.txt set to a subdirectory called database under the ExCID install directory. setup.sh and update_databases.sh will happily put the processed reference files elsewhere if specified by DataBaseDir. However, if you do this, you will get cryptic errors like:
grep: /full/path/to-excid/ExCID/ExCID_v2.0///database/HGMD_2014_v4.bed: No such file or directory
I believe this is because the scripts ExCID.grep_gene_list_pct_Final-miRNA.pl and ExCID.grep_gene_list_pct_Final.pl are expecting HGMD_2014_v4.bed to be in $script_dir/database.
I'm guessing y'all keep your
DataBaseDir
in Config.txt set to a subdirectory calleddatabase
under the ExCID install directory.setup.sh
andupdate_databases.sh
will happily put the processed reference files elsewhere if specified byDataBaseDir
. However, if you do this, you will get cryptic errors like:I believe this is because the scripts
ExCID.grep_gene_list_pct_Final-miRNA.pl
andExCID.grep_gene_list_pct_Final.pl
are expectingHGMD_2014_v4.bed
to be in$script_dir/database
.