modified: SpatialOmicsCoord.py
[GalaxyCodeBases.git] / makefiles / make0 / stage0.mk
blob06d793ec213b99946529b4fd4d5e2b17bc829e8a
1 ifndef STAGE0_MK
2 STAGE0_MK=stage0.mk
4 include init.mk
6 stage0: tmp/stage0
7 tmp/stage0: tmp/_stage0-Samplelst \
8 tmp/_stage0-cutadapter
10 tmp/_stage0-Samplelst:
11 mkdir -p tmp
12 find ${FQ_PATH} -name '*.gz'|sort > tmp/rawfq.lst
13 ./utils/rawfq2list.pl tmp/rawfq.lst Sample.lst
14 touch $@
16 tmp/_stage0-cutadapter:
17 $(foreach item,SAMPLELIST,echo $item)
18 touch $@
21 final: stage0
23 endif