Write a single sequence and return the number of bytes written and any error.
(s *seq.Seq)
| 137 | |
| 138 | // Write a single sequence and return the number of bytes written and any error. |
| 139 | func (self *Writer) Write(s *seq.Seq) (n int, err error) { |
| 140 | return Format(s, self.w) |
| 141 | } |
| 142 | |
| 143 | //To-do: not finished |
| 144 | //Format a single sequence into sam string |
no test coverage detected