How to set parameterized sequcence as default sequence with +uvm_set_default_sequence

In reply to Jaor:

UVM factory registration does not allow named look-ups which is a requirement for +uvm_set_default_sequence. You can only use type look-ups when a component/object is parameterized.

Also, you should never use a default sequence. You want your test to be able to control what sequences are started. By using a default_sequence, you remove this control from your test.