GSNAP Command is incorrect
Allelic imbalance meter (Allim), a new tool for measuring allele speci
Brought to you by:
ramvinay
Originally created by: tonyjian...@gmail.com
In call_gsnap.py, line 218:
gsnap_command = "gsnap -d "+ gsnap_dbname +" -D "+ gsnap_dbdir+ " -V "+snp_dir+" -v "+snp_file1+" "+[read1]+" "+[read2]+ "-N 1 --split-output="+str(output_name)+" -t "+str(int(thread))+" -A sam"
should be changed to
gsnap_command = "gsnap -d "+ gsnap_dbname +" -D "+ gsnap_dbdir+ " -V "+snp_dir+" -v "+snp_file1+" "+[read1]+" "+[read2]+ " -N 1 --split-output="+str(output_name)+" -t "+str(int(thread))+" -A sam"
with a space before '-N'.