This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SRR1631879 | |
SRR1631880 | |
SRR1631881 | |
SRR1631882 | |
SRR1631883 | |
SRR1631884 | |
SRR1631885 | |
SRR1631886 | |
SRR1631887 | |
SRR1631888 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nextflow | |
params.inputDir = "./fastq/*.fastq.gz" | |
params.outdir = "./results" | |
Channel | |
.fromPath(params.inputDir).map { tuple (it.name.split('.fastq.gz')[0], it ) } | |
.set { fastq_assemble_ch } | |
process dragonflye { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "VESPUCCI Use Case 03" | |
author: "Paolo Sonego" | |
date: "06/24/2021" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#use this to check the files are going to be deleted are the right ones | |
find . -maxdepth 1 -type f -newermt '2016-10-12 14:22:59' ! -newermt '2016-10-12 14:24:59' | |
# delete them | |
find . -maxdepth 1 -type f -newermt '2016-10-12 14:22:59' ! -newermt '2016-10-12 14:24:59' -deleted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
download.file2 <- function (url, destfile = NULL, method, quiet = FALSE, mode = "w", cacheOK = TRUE, extra = getOption("download.file.extra")) | |
{ | |
if (is.null(destfile)) destfile <- basename(url) | |
else destfile | |
method <- if (missing(method)) | |
getOption("download.file.method", default = "auto") | |
else match.arg(method, c("auto", "internal", "libcurl", "wget", | |
"curl", "lynx")) | |
if (method == "auto") { | |
if (length(url) != 1L || typeof(url) != "character") |