To-do: not finished Format a single sequence into sam string
(s *seq.Seq, w io.Writer)
| 143 | //To-do: not finished |
| 144 | //Format a single sequence into sam string |
| 145 | func Format(s *seq.Seq, w io.Writer) (n int, err error) { |
| 146 | return w.Write([]byte(string(s.Seq) + "\n")) |
| 147 | } |
| 148 | |
| 149 | // Flush the writer. |
| 150 | func (self *Writer) Flush() error { |