View source: R/method_process_definition.R
def_method | R Documentation |
Define meta information on the TI method.
def_method(
id,
name = id,
source = "tool",
tool_id = NULL,
platform = NULL,
url = NULL,
license = NULL,
authors = list(),
description = NULL
)
id |
An id by which to identify a method. Should only contain lowercase letters or underscores. |
name |
The name of the method. |
source |
The type of TI method. Options are :
|
tool_id |
If there are multiple TI methods from the same toolkit, the name of the toolkit can be specified here. |
platform |
The platform the TI method uses (e.g. R, Python, C++, ...). |
url |
An URL to the codebase of the method. |
license |
The software license the method uses (e.g. GPL-3, BSD-3, Artistic-2.0, MIT). |
authors |
A list of authors (see example). |
description |
Additional information on the method |
def_method(
id = "some_method",
name = "Some method <3",
source = "tool",
tool_id = "bobstoolkit",
platform = "VBA",
url = "https://github.com/bobdylan/singlecellvba",
license = "GPL-3",
authors = list(
def_author(
given = "Bob",
family = "Dylan",
email = "bob@dylan.com",
github = "bobdylan",
orcid = "0000-0003-1234-5678"
)
),
description = "I love trajectories!!"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.