Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
21
Task/FASTA-format/PowerShell/fasta-format-1.ps1
Normal file
21
Task/FASTA-format/PowerShell/fasta-format-1.ps1
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.ps1
Normal file
21
Task/FASTA-format/PowerShell/fasta-format-2.ps1
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