"Quieting" mfold output

Ask questions, report problems or request new features for the mfold software.
Post Reply
cfgauss
Posts: 2
Joined: Wed Feb 15, 2023 11:49 pm

"Quieting" mfold output

Post 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?
Nickelpenny12
Posts: 2
Joined: Tue Jul 23, 2024 9:40 am

Re: "Quieting" mfold output

Post 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"
Post Reply