Help for installation of Secretomep
1
1
Entering edit mode
7.9 years ago

Hello everybody,

I installed secretome, but i don't run. I haven't any problem when I run the files tests of secretomep but I have an error when I run on my files : "is missing features (psort_vect) ". I don't understand, can you help me !

Thank you for your help !

software error secretomep • 1.6k views
ADD COMMENT
1
Entering edit mode
7.7 years ago
Ira ▴ 20

I recently ran into this issue myself. From what I can tell the cause of the problem is that multiple instances of psort cannot run at the same time. I found that I could fix the problem by changing the secretomep script to set MAXCPU to 1. This works but is very slow. You can achieve some degree of speedup if you allow multiple CPUs but restrict to just one psort process at a time. In my secretomep script I added the following modification. Look for the section of the script that looks like this;

while ( `ls -1 proc |& wc -l` > $allow_par )
     sleep 2
  end

And replace with this

while ( `ls -1 proc |& wc -l` > $allow_par )
     sleep 0.5
  end

while ( `ls -1 proc |& grep 'psort' |& wc -l` > 0)
    sleep 0.5
end
ADD COMMENT

Login before adding your answer.

Traffic: 1895 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6