Data-flo Docs
  • About Data-flo
    • Data-flo Major Update in April 2024
      • Migrating your workflows into the latest version of Data-flo
        • Streamlined adaptors
        • Deprecated adaptors
        • New and retained adaptors
    • Change Log
    • Privacy and Terms of Service
    • Open source software used by Data-flo
  • Data-flo Basics
    • Account
    • Navigation
    • Terminology
    • Interface Icons
    • Data-flo's building blocks: Adaptors
      • Using adaptors to import data
      • Using adaptors to process data
      • Using adaptors to export data
    • Combining adaptors to create workflows
      • Creating a workflow
        • Building a workflow from scratch
        • Cloning an existing workflow
        • Importing a .dataflo file
      • Testing your workflows
      • Running your workflows
      • Accessing your workflows
  • Adaptor reference guide
    • add-column
    • add-jittering
    • add-value-to-dictionary
    • aggregate-rows
    • append-datatables
    • append-lists
    • append-to-list
    • apply-force-directed-layout
    • calculate-column
    • calculate-time-difference
    • change-column-case
    • compare-columns
    • concatenate-columns
    • concatenate-text
    • convert-date-to-text
    • convert-list-to-datatable
    • convert-text-to-datatable
    • convert-text-to-list
    • create-dictionary-from-datatable
    • create-google-drive-folder
    • create-graph-from-datatable
    • create-graph-from-dot
    • create-list-from-datatable
    • create-text-from-template
    • duplicate-column
    • export-file-to-google-drive
    • export-file-to-smb-share
    • export-graph-to-dot-file
    • export-text-to-file
    • export-to-csv-file
    • export-to-dbf-file
    • export-to-google-sheet
    • export-to-microreact-project
    • export-to-sqlite-file
    • filter-list
    • filter-rows
    • find-value-in-dictionary
    • find-value-in-list
    • format-date-column
    • format-time-column
    • geocoding
    • import-file-from-dropbox
    • import-file-from-figshare
    • import-file-from-google-drive
    • import-file-from-http-request
    • import-file-from-s3
    • import-file-from-smb-share
    • import-file-from-url
    • import-from-csv-file
    • import-from-dbf-file
    • import-from-epicollect-project
    • import-from-excel-file
    • import-from-google-sheet
    • import-from-json-file
    • import-from-microreact-project
    • import-from-mysql
    • import-from-oracle
    • import-from-postgres
    • import-from-spreadsheet-file
    • import-from-sql-server
    • import-from-sqlite
    • import-list-from-text-file
    • import-text-from-file
    • join-datatables
    • list-datatable-columns
    • list-newick-leaf-labels
    • map-column-values
    • prepend-to-list
    • query-datatable
    • remove-columns
    • remove-duplicate-list-values
    • remove-duplicate-rows
    • rename-columns
    • rename-newick-leaf-labels
    • replace-blank-values
    • replace-values-in-columns
    • replace-values-in-list
    • replace-values-in-text
    • reshape-long-to-wide
    • reshape-wide-to-long
    • reverse-geocoding
    • run-openai-model
    • run-replicate-model
    • run-workflow
    • sample-datatable
    • select-columns
    • select-list-values
    • select-rows
    • send-email-message
    • sort-datatable
    • sort-list
    • split-column
    • split-geographical-coordinates
    • split-list
    • summarise-datatable
    • transform-columns
    • workflow-repeater
  • Applying Data-flo
    • Basics in Minutes!
      • Quick Workflow
        • Step 1: Configure a solo adapter to view data.
        • Step 2: Add and link a second adaptor.
        • Step 3: Add a value.
        • Step 4: Complete the workflow.
        • Step 5: Run the workflow.
        • Step 6: Share the workflow.
  • API
    • Data-flo API
    • API Access Tokens
  • Support
    • Contact and Feedback
    • Private Installations
Powered by GitBook
On this page
  • Description
  • Inputs
  • Outputs
  • Examples
  • Example 1: Default behaviour.
  • Use Cases
  1. Adaptor reference guide

export-to-microreact-project

Previousexport-to-google-sheetNextexport-to-sqlite-file

Last updated 7 months ago

Description

export-to-microreact-project adaptor creates a new project or updates an existing a project on a Microreact server.

Inputs

project Type: text Required: No The ID (e.g., fCXBPv48KNkm5oZq8UWdHG) or the URL (e.g., ) of an existing project to be updated. Leave empty to create a new project.

name Type: text Required: No The new project name. If unspecified, defaults to existing project name if there is one, otherwise defaults to Unnamed project.

description Type: text Required: No An optional project description in Markdown format.

data file Type: file Required: No A data file in one of the . Leave empty if using data url.

data url Type: text Required: No URL linking to a data file in one of the . Leave empty if using data file.

tree file Type: file Required: No A phylogenetic tree file in Newick format. Leave empty if using tree url.

tree url Type: text Required: No URL linking to a tree file in Newick format. Leave empty if using tree file.

network file Type: file Required: No A network file in DOT format. Leave empty if using network url.

network url Type: text Required: No URL linking to a network file in DOT format. Leave empty if using network file.

server api Type: text Required: No The URL of the Microreact server on which the project will be created or updated. If you have a local Microreact installation, you must include /api/ after your Microreact server URL. If unspecified, defaults to https://microreact.org/.

access token Type: text Required: Yes The .

id column Type: text Required: No The column name in data that will be used as the unique row ID. If unspecified, defaults to id.

timeline column Type: text Required: No The column name which contains the timeline data. If unspecified, no timeline will be added when creating a new project.

latitude column Type: text Required: No The column name which contains map latitude values. If unspecified, no map will be added when creating a new project.

longitude column Type: text Required: No The column name which contains map longitude values. If unspecified, no map will be added when creating a new project.

Outputs

id Type: text The ID of the Microreact project.

url ⁃ Type: text The URL for the Microreact project.

Examples

Example 1: Default behaviour.

Inputs:

data file: data.csv

id, code, name
1, GB, United Kingdom
2, TR, Turkey
3, US, United States

name: demo-project

project: null (empty)

access token: null (empty)

description: id

data url: null (empty)

network file: null (empty)

server api: null (empty)

network url: null (empty)

access token: 1234567890

id column: null (empty)

timeline column: null (empty)

latitude column: null (empty)

longitude column: null (empty)

Outputs:

id: 12345

-> Exported CSV data file to a new Microreact project

Use Cases

  • Process data using Data-flo and export cleaned data to Microreact for visualisation and interactive analysis.

  • Update an existing Microreact project with new data.

url:

https://microreact.org/project/fCXBPv48KNkm5oZq8UWdHG
supported formats
supported formats
API access token for a Microreact account
https://microreact.org/project/testproject