checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking for log in -lm... yes
checking for main in -lpthread... yes
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for inline... inline
checking for size_t... yes
checking for uint32_t... yes
checking build system type... x86_64-apple-darwin21.6.0
checking host system type... x86_64-apple-darwin21.6.0
checking for GNU libc compatible malloc... yes
checking for working strtod... yes
checking for memmove... yes
checking for pow... yes
checking for strtol... yes
checking for library containing pthread_create... none required
checking for library containing BZ2_bzCompress... -lbz2
checking for library containing zlibVersion... -lz
checking for pthread.h... yes
checking for bzlib.h... yes
checking for zlib.h... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating man/Makefile
config.status: creating src/config.h
config.status: src/config.h is unchanged
config.status: executing depfiles commands
Making all in src
/Library/Developer/CommandLineTools/usr/bin/make all-am
Making all in man
make[1]: Nothing to be done for `all'.
make[1]: Nothing to be done for `all-am'.
Making install in src
.././install-sh -c -d '/usr/local/bin'
/usr/bin/install -c pear '/usr/local/bin'
make[2]: Nothing to be done for `install-data-am'.
Making install in man
make[2]: Nothing to be done for `install-exec-am'.
.././install-sh -c -d '/usr/local/share/man/man1'
/usr/bin/install -c -m 644 pear.1 '/usr/local/share/man/man1'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
It is (apparently) installed, because when I type 'pear' into Terminal it will give me all the pear commands. However when I try to run:
./pear f- out.Pool-1_S1_L001_R1_001.fastq.gz -r out.Pool-1_S1_L001_R2_001.fastq.gz -o pool1pear
I get:
zsh: no such file or directory: ./pear
I've also asked Terminal 'whereis pear' and got:
pear: /Users/hannahvollmer/miniconda3/bin/pear /Users/hannahvollmer/miniconda3/share/man/man1/pear.1
(this second one was something downloaded 2 years ago, not sure what it is)
I tried a fix described in a prior thread that involved installing Rosetta, it is not supported. (I even downloaded Skype to see if it would prompt me to get Rosetta, it didn't)
I'm new at command line languages and software in general so hopefully the fix is something simple. Been working on this for days though :/
Hannah
Hi Hannah,
how about running it this way:
/Users/hannahvollmer/miniconda3/bin/pear -f
out.Pool-1_S1_L001_R1_001.fastq.gz -r
out.Pool-1_S1_L001_R2_001.fastq.gz -o pool1pear
Tomas
To unsubscribe from this group and stop receiving emails from it, send an email to pear-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pear-users/10baa366-377d-4d34-b287-afee97d0687bn%40googlegroups.com.
Hi Hannah,
with list of commands you mean the options for PEAR? We first need to make sure you can run the pear executable. If that works, and you're getting the list of PEAR command-line options, then a common problem with MAC users is the dash symbol. I think the '-' symbol does not correspond to the correct ascii character when copying from the web or emails. Try typing the command manually in the console (or at least the dashes) to see if that works.
Tomas
/Users/hannahvollmer/miniconda3/bin/pear -f out.Pool-1_S1_L001_R1_001.fastq.gz -r out.Pool-1_S1_L001_R2_001.fastq.gz -o pool1pear
Hoping I can copy this from Terminal to paste into Stickies like I've been doing so I can modify and copy again when running different pools. Took me several tries to type it in Terminal without misspelling, lol.