Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
21
Task/FASTA-format/PowerShell/fasta-format-1.psh
Normal file
21
Task/FASTA-format/PowerShell/fasta-format-1.psh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
$file = @'
|
||||
>Rosetta_Example_1
|
||||
THERECANBENOSPACE
|
||||
>Rosetta_Example_2
|
||||
THERECANBESEVERAL
|
||||
LINESBUTTHEYALLMUST
|
||||
BECONCATENATED
|
||||
'@
|
||||
|
||||
$lines = $file.Replace("`n","~").Split(">").ForEach({$_.TrimEnd("~").Split("`n",2,[StringSplitOptions]::RemoveEmptyEntries)})
|
||||
|
||||
$output = New-Object -TypeName PSObject
|
||||
|
||||
foreach ($line in $lines)
|
||||
{
|
||||
$name, $value = $line.Split("~",2).ForEach({$_.Replace("~","")})
|
||||
|
||||
$output | Add-Member -MemberType NoteProperty -Name $name -Value $value
|
||||
}
|
||||
|
||||
$output | Format-List
|
||||
21
Task/FASTA-format/PowerShell/fasta-format-2.psh
Normal file
21
Task/FASTA-format/PowerShell/fasta-format-2.psh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
$file = @'
|
||||
>Rosetta_Example_1
|
||||
THERECANBENOSPACE
|
||||
>Rosetta_Example_2
|
||||
THERECANBESEVERAL
|
||||
LINESBUTTHEYALLMUST
|
||||
BECONCATENATED
|
||||
'@
|
||||
|
||||
$lines = $file.Replace("`n","~").Split(">") | ForEach-Object {$_.TrimEnd("~").Split("`n",2,[StringSplitOptions]::RemoveEmptyEntries)}
|
||||
|
||||
$output = New-Object -TypeName PSObject
|
||||
|
||||
foreach ($line in $lines)
|
||||
{
|
||||
$name, $value = $line.Split("~",2) | ForEach-Object {$_.Replace("~","")}
|
||||
|
||||
$output | Add-Member -MemberType NoteProperty -Name $name -Value $value
|
||||
}
|
||||
|
||||
$output | Format-List
|
||||
Loading…
Add table
Add a link
Reference in a new issue