Entering edit mode
2.8 years ago
melissachua90
▴
70
I want to use a specific APT program/application on linux, ie apt-midas
.
The APT tools can be found here: https://media.affymetrix.com/support/developer/powertools/changelog/index.html
I've installed APT using wget
but apt-midas
cannot be found. How do I install apt-midas
?
You need to make sure, that the
apt-midas
is accessible (that means found inPATH
).Basically, there are 2 ways:
1) Copy the binaries to location already in
PATH
(what is inPATH
can be viewed withecho $PATH
)2) Add the directory with the binaries to
PATH
(described many times on the web, e.g. here https://linuxize.com/post/how-to-add-directory-to-path-in-linux/)GL
I used this
export PATH=$PWD:$PATH
command but still am unable to accessapt-midas
.Have you verified that the
PATH
has been set? And, more importantly, were you located in the unpacked directory with the midas binaries? Theexport
is also one-time setting only.Also note, that there is a
bin
directory, which is the directory that you need to add.One more thing, I've noticed, that on my systems, the binaries were not executable automatically, I've had to use
chmod +x apt-midas
(replace theapt-midas
with the program of your choice) to make them executable.Could you post the command outputs if it still doesn't work?
The commands that I ran
The
apt-midas.html
file can be located in the directory but I wasn't able to call it withapt-midas
.This sequence of commands will not work.
Do this:
Thanks! I managed to launch
apt-midas
.However, I want to run the following
and got an error message:
Permissions
From the
ls -l
it is obvious, that thecelfiles.txt
does not have the read attribute set (note the missingr
). Set it usingchmod
(usage e.g. here https://wiki.archlinux.org/title/File_permissions_and_attributes)