cgat-developers/cgat-core

Has accessing parameters with getParameters() changed?

Closed this issue · 2 comments

Hello,
What happened to Pipeline.getParameters()?
Is this now something like:
from CGATCore import Pipeline as P
P.Parameters.get_parameters()
?
Apologies if you are still working on this...
Antonio

Hi Antonio,

Yes, please try:

from CGATCore import Pipeline as P

and then:

P.get_params()["genome_dir"]

Best regards,
Sebastian

Thanks!