How to run a specific simulation/workflow only from all the flows in the setup method?

the setup method has a bunch of workflows in them but in specific cases we would like to have run only one of out them

setUp(
x.inject(getLoadSetup(flow1)),
y.inject(getLoadSetup(r)),
e.inject(getLoadSetup(d)),
f.inject(getLoadSetup(a)),
g.inject(getLoadSetup(h)),
r.inject(getLoadSetup(n)),
m.inject(getLoadSetup(y)))

possible to just run m.inject(getLoadSetup(y) ?

We use gatling enterprise and was wondering if we could pass in a parameter dynamically to be able to do so ?

Subject already described in Dynamically adding scenarios based on loop - #6 by sbrevet

Cheers!

Thank you… Will give that a try