;;;; -*- Mode: LISP -*- (in-package :asdf) (setf (logical-pathname-translations "scrape") `(("**;*.*" ,(make-pathname :directory (append (pathname-directory *load-pathname*) '(:wild-inferiors)) :name :wild :type :wild)))) (defsystem :scrape :name "HCLS Reagents Task, scrapers" :author "Alan Ruttenberg" :serial t :components ((:file "pull-panomics") ) :depends-on ("util")) ;;;; eof