Sequential sequence

I want to start a series of sequences, in which I would be writing values into some registers. Is there a way I can model a sequential sequence in UVM, which would call sequences one after the other?

The UVM term for a sequence that calls other sequences is a virtual sequence. See the Cookbook for details.

A sequence can generate sequence items or call other sequences. You can easily create a sequence that calls additional sequences in order.

You can also take a look at Virtual Sequences which will allow you to coordinate sequences across multiple sequencers.

Thank you. I was able to resolve my issue with these inputs.