Has accessing parameters with getParameters() changed?
Closed this issue · 2 comments
antoniojbt commented
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
sebastian-luna-valero commented
Hi Antonio,
Yes, please try:
from CGATCore import Pipeline as P
and then:
P.get_params()["genome_dir"]
Best regards,
Sebastian
antoniojbt commented
Thanks!