Seq is a base trait (interface) for sequences and List is a concrete implementation of that interface.
Every instance of List is already a Seq so there's no need to convert anything. You can use toSeq method, but I don't see any reason to do so.
To convert Seq to a List use toList method.