Skip to content
Snippets Groups Projects
Commit 8cdd1208 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Update fastqc.sh

parent 751b83f2
Branches
Tags
1 merge request!45Develop
Pipeline #4715 passed with stages
in 1 minute and 43 seconds
#!/bin/bash
#fastqc.sh
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_mkfastq/blob/develop/LICENSE)
#* --------------------------------------------------------------------------
#*
find . -name '*.fastq.gz' | awk '{printf("fastqc \"%s\"\n", $0)}' | parallel -j $(grep -c ^processor /proc/cpuinfo) --verbose
#find . -name '*fastqc.*' | xargs -I '{}' mv '{}' ./
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment