Skip to content

Interace with the Laxy REST API in R. Download your job files.

License

Notifications You must be signed in to change notification settings

MonashBioinformaticsPlatform/laxyapi-r

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laxyapi

Interact with the Laxy API via R. Download job files.

install.packages("remotes")
remotes::install_github('MonashBioinformaticsPlatform/laxyapi-r')

JOB_ID <- "bl4F00longIDfr0MLAXY"
ACCESS_TOKEN <- "51d97057-8b48-4457-a40d-72c6641fa539"

# Get all the files from the job
all_job_files <- laxyapi::get_job_files(
  JOB_ID,
  access_token = ACCESS_TOKEN)

# Download just the files in */sikRun/countFiles/*.txt
# These would be just the count files from an RNAsik run
#
downloaded_count_files <- laxyapi::get_job_files(
  JOB_ID,
  glob_filter = "*/sikRun/countFiles/*.txt",
  access_token = ACCESS_TOKEN)

About

Interace with the Laxy REST API in R. Download your job files.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages