KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Rcwl
โ 15
Open GitHub โ
Write CWL in R
Download README (.md)
Explore Similar Repositories
slang
:
Full-stack live chat application inspired by Slack. Engineered with Ruby on Rails ActionCable and implemented with React.js and Redux for an efficient state managed user experience.
crisproff
:
off-targeting assessment of Cas9 gRNAs
ta-lib-aws-lambda
:
Python 3.6 TA-Lib for AWS Lamba
Freight
:
๐๐จ Dynamically create Absinthe GraphQL payload objects for mutations
weibo_spider
:
ๅพฎๅ็ฌ่ซ๏ผ็ฌๅปๅพฎๅ่ฏญๆ๏ผๆ ๆๅๆ๏ผuser-agentๆฑ ๏ผๅ ่ถณIP๏ผscrapy๏ผmongodb
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Rcwl
?
Download (.md)
# Rcwl The Rcwl package can be a simple and user-friendly way to manage command line tools and build data analysis pipelines in R using Common Workflow Language (CWL). ## Installation The package can be installed from Bioconductor (>= 3.9): ``` r if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("Rcwl") # Or from github BiocManager::install("rworkflow/Rcwl") ``` ## Hello world! ``` r library(Rcwl) inputs <- InputParamList( InputParam(id = "sth") ) echo <- cwlProcess(baseCommand = "echo", inputs) echo$sth <- "Hello World!" res <- runCWL(echo) ``` ## User Guide ``` r vignette(package = "Rcwl") ```