This is a basic Linux usage issue.
(1) Did you run that command from within the directory which contains cnvnator?
If so, see (2). If not, try again from the correct location, then see (2) if that also fails. If cnvnator were in /home/you/xyz, then either:
cd /home/you/xyz
./cnvnator -root /output/out.root -chrom X -tree /mybamfile/myfile.bam
Or specify the full path from any location:
/home/you/xyz/cnvnator -root /output/out.root -chrom X -tree /mybamfile/myfile.bam
(2) Is cnvnator executable?
Again assuming that cnvnator is in /home/you/xyz, try:
ls -l /home/you/xyz/cnvnator
Do you see a line beginning with something like:
-rwxr-xr-x
If not, you need to make cnvnator executable:
chmod +x /home/you/xyz/cnvnator
Thanks for your answer.
First off, I have two files :
this:
The software started but now I have a different issue
What does that mean ? T.T
The file cnvnator.cpp is not an executable program; it's source code. You need to compile the software by following the instructions in the README file, which you should find when you unzip the downloaded software.
Thanks it worked!