Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/FASTA-format/Gambas/fasta-format.gambas
Normal file
16
Task/FASTA-format/Gambas/fasta-format.gambas
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Public Sub Main()
|
||||
Dim sList As String = File.Load("../FASTA")
|
||||
Dim sTemp, sOutput As String
|
||||
|
||||
For Each sTemp In Split(sList, gb.NewLine)
|
||||
If sTemp Begins ">" Then
|
||||
If sOutput Then Print sOutput
|
||||
sOutput = Right(sTemp, -1) & ": "
|
||||
Else
|
||||
sOutput &= sTemp
|
||||
Endif
|
||||
Next
|
||||
|
||||
Print sOutput
|
||||
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue