Skip to content

Load FASTA

Loads a FASTA sequence provided as plain text and outputs it as a FASTA-typed value for downstream biotech nodes. It does not modify or validate the content beyond passing it through. Use this to introduce single or multi-record FASTA content into your workflow.
Preview

Usage

Use when you have one or more FASTA records as text and need to feed them into biotech processing nodes (e.g., sequence analysis, conversion, combination). Paste or programmatically supply the FASTA-formatted string; the node outputs a FASTA type that can be combined or transformed by subsequent nodes.

Inputs

FieldRequiredTypeDescriptionExample
fasta_stringTrueSTRINGFASTA content as a text string. Can contain one or multiple records with headers (lines starting with '>') followed by sequence lines.>seq1 MKTAYIAKQRQISFVKSHFSRQDILDLWIYHTQGYFP >seq2 GSSHHHHHHSSGLVPRGSHMASMTGGQQMGRDLYDDDDK

Outputs

FieldTypeDescriptionExample
sequence.fastaFASTAThe provided FASTA content passed through as a FASTA-typed output for downstream nodes.>protein_A MVLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDR

Important Notes

  • FASTA content is passed through without structural validation; ensure it is properly formatted (headers starting with '>' and valid sequence lines).
  • Supports multiline input and multiple FASTA records in a single input string.
  • This node does not assign IDs; downstream nodes that require IDs typically infer them from FASTA headers.
  • For merging multiple sources of FASTA, use the FASTA Combiner node after loading individual strings.

Troubleshooting

  • Invalid FASTA format: Verify each record begins with a header line starting with '>' and that sequence lines contain only valid characters.
  • Empty output: Ensure fasta_string is not empty or whitespace-only.
  • Downstream node rejects input: Confirm the downstream node expects a FASTA type (string) and not a dictionary-like structure; provide properly formatted headers if IDs are needed.