Page 1 of 1

"Quieting" mfold output

Posted: Thu Feb 16, 2023 12:13 am
by cfgauss
On a Linux box mfold prints to stdout (or perhaps stderr) as it computes. And

Code: Select all

$ mfold ... 1>/dev/null 2>&1
doesn't seem to eliminate this printing.

Is there a way to eliminate it?

Re: "Quieting" mfold output

Posted: Tue Jul 23, 2024 11:49 am
by Nickelpenny12
I found a solution by executing the command in a separate bash screen:

e.g.

Code: Select all

screen -dm bash -c "cd {output_dir} && mfold SEQ=rna_fasta.fasta"