forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-fail-blacklist
1629 lines (1438 loc) · 40.3 KB
/
build-fail-blacklist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Never resolves in bulk
recipes/mosca
# freezes bulk
recipes/metapop
recipes/sequana
recipes/phenix
recipes/monocle3-cli
# Resolve conflict in bulk branch, likely a python 3.9 dependency missing
recipes/seidr
recipes/tadbit
recipes/alignlib-lite
recipes/ariba
recipes/concoct
recipes/genomelake
recipes/mockinbird
recipes/openms-meta
recipes/sparse-neighbors-search
recipes/msaprobs
recipes/mgkit
recipes/vsclust
recipes/starseqr
recipes/desman
recipes/sqt
recipes/scanindel
recipes/blockclust
recipes/datma
recipes/pasa
recipes/chorus2
recipes/raxml/7.3.0
recipes/samwell
recipes/quake
recipes/pairsnp
recipes/simlord
recipes/gap2seq
recipes/umis
# dependency conflict
recipes/probamconvert
recipes/hail
recipes/savage
recipes/regenie
recipes/pb-falcon
# incompatible with modern htslib
recipes/vt/2015.11.10
# incorrectly merged, test segfaults
recipes/docking_py
# uses too much memory
recipes/anise_basil
# uses `hts-sys v1.10.3` but rust-htslib pulls in >=1.11.1-fix1, <2.0.0
recipes/lorikeet-genome
# incompatible with c++ 17
recipes/bsmap
# needs tweaking on osx
recipes/bcftools/1.3.1
# fitBeta2.cpp:158:93: error: no matching function for call to 'arma::eGlue<arma::Glue<arma::Glue<arma::Op<arma::Mat<double>, arma::op_htrans>, arma::Mat<double>, arma::glue_times>, arma::Mat<double>, arma::glue_times>, arma::Mat<double>, arma::eglue_plus>::i(bool) const'
recipes/xtail
# unknown c++ error
recipes/bedops
# patch no longer works
recipes/pathracer
# needs patching for compilers
recipes/logol
# fails mulled test
recipes/ribotaper
# sketch/include/sketch/mh.h:993:15: error: no viable overloaded '='
recipes/dashing
# Prebuilt binaries no longer work
recipes/msms
recipes/omssa
# /Applications/Xcode_12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libIntaRNA.a(InteractionEnergyIdxOffset.o) has no symbols
recipes/intarna
# killed during test
recipes/mtsv
# stl_tree.h:780:8: error: static assertion failed: comparison object must be invocable as const
recipes/rmblast
# make: *** No rule to make target 'common"'. Stop.
recipes/conduit-assembler
# ./gecode/set/int/weights.hpp:131:35: error: no viable overloaded '='
recipes/gecode
recipes/gecode/4.4.0
# binary missing after installation
recipes/scrappie
# error while loading shared libraries: libblis.so.3: cannot open shared object file: No such file or directory
recipes/andi
# unknown type name 'ptrdiff_t'
recipes/centrifuge
# prior.c:102:12: error: implicitly declaring library function 'strcmp' with type 'int (const char *, const char *)' [-Werror,-Wimplicit-function-declaration]
recipes/wise2
# fails subtests
recipes/perl-bio-das
recipes/kinsimriboswitch
# needs rebuild or perl-gd
recipes/perl-bioperl
recipes/hla-la
recipes/feelnc
recipes/bttoxin_scanner
recipes/perl-bio-mlst-check
recipes/snmf
recipes/perl-bio-bigfile
recipes/bttcmp
recipes/perl-sanger-cgp-vagrent
recipes/gaas
recipes/mashtree
recipes/aodp
recipes/perl-sanger-cgp-allelecount
recipes/gcluster
recipes/fastx_toolkit
recipes/perl-ensembl-variation
# Can't find boost (looking for static libraries?)
recipes/metabat2
recipes/fastani
recipes/hap.py
recipes/kat
# Controller/../Reader/../Graph/pre_graph/../flow_graph/../../Datatype_Templates/boost_bitset_hash.h:27:17: error: redefinition of 'hash_value'
recipes/ryuto
# Unable to initialize nextflow environment
recipes/illumina-cleanup
# Needs the TBB repodata patch so it doesn't pull in a broken bowtie2
recipes/unicycler
# pulls in non-existent static boost library, needs to switch to using the shared library
recipes/metamaps
# test now fails
recipes/rnasnp
# Uses too much memory during test?
recipes/megahit
# requires patching around "invalid suffix on literal; C++11 requires a space between literal and identifier "
recipes/atac
# ldc requires a rebuild
recipes/sambamba/0.5.9
# incompatible with htslib >1.10
recipes/popscle
# fails test, Can't locate Bio/EnsEMBL/TaxonomyNode.pm in @INC (you may need to install the Bio::EnsEMBL::TaxonomyNode module) (@INC contains: /usr/local/lib/site_perl/5.26.2/x86_64-linux-thread-multi /usr/local/lib/site_perl/5.26.2 /usr/local/lib/5.26.2/x86_64-linux-thread-multi /usr/local/lib/5.26.2 .)
recipes/perl-ensembl-genomes
# fails compilation in bulk on Linux
recipes/beast2
recipes/stride
recipes/catch_chimera
recipes/rdp-readseq
recipes/graphaligner
recipes/crb-blast
recipes/r-fastbaps
recipes/paragraph
recipes/selectsequencesfrommsa
recipes/rappas
recipes/ssake
recipes/lorikeet
recipes/nasp
recipes/mmvc
recipes/expansionhunter
recipes/lumpy-sv-minimal
recipes/isescan
recipes/gemma
recipes/roary
recipes/deltabs
recipes/gottcha
recipes/pepnovo
recipes/ea-utils
recipes/nextgenmap
recipes/perl-bio-automatedannotation/1.182770
recipes/mashmap
recipes/extract_fullseq
recipes/igor_vdj
recipes/tiddit
recipes/rosella
recipes/pargenes
recipes/emmix/1.3
recipes/porfast
recipes/agg
recipes/hg-color
recipes/bandage
recipes/prosolo
recipes/ratt
recipes/graphclust-wrappers
recipes/perl-ensembl-io
recipes/kmc
recipes/swga
recipes/jvarkit-bam2wig
recipes/jvarkit-bam2svg
recipes/jvarkit-msa2vcf
recipes/rxdock
recipes/cath-tools
recipes/makehub
recipes/phame
recipes/pegasuspy
recipes/goetia
recipes/consel
recipes/isaac4
recipes/clame
recipes/perl-ensembl-funcgen
recipes/sniffles
recipes/tn93
recipes/prosic
recipes/dms
recipes/variant_tools
recipes/r-phytools
recipes/translig
recipes/lsc
recipes/rambo-k
recipes/ngless
recipes/mobster
recipes/visceral-evaluatesegmentation
recipes/perl-lockfile-simple
recipes/hyphy/2.3.11
recipes/chicagotools
recipes/skewer/0.1.126
recipes/skewer
recipes/trim_isoseq_polya
recipes/perl-ensembl-compara
recipes/ra/ra-assembler
recipes/pureclip
recipes/hulk
recipes/bolt-lmm
recipes/bmfilter
recipes/unitig-counter
recipes/probcons
recipes/spydrpick
recipes/bctools
recipes/genometools-genometools
recipes/bayestyper
recipes/blast/2.2.31
recipes/group_humann2_uniref_abundances_to_go
recipes/isonclust2
recipes/bedtools/2.26.0
recipes/bmtool
recipes/fastobo
recipes/sibelia
recipes/var-agg
recipes/t-coffee
recipes/wham
recipes/percolator
recipes/r-saige/0.39
# Segfaults in bulk on Linux 24.3.2021
recipes/dbgraph
recipes/mira
# Source code moved
recipes/r-intlim
recipes/astalavista
recipes/kggseq
recipes/hts-nim-tools
recipes/pbmarkdup
recipes/oligoarrayaux
recipes/coral
recipes/ngsep
recipes/rnabridge-denovo
recipes/eval
recipes/minorseq
recipes/prosampler
recipes/methylextract
recipes/opsin/1.4.0
recipes/opsin/2.1.0
recipes/blasr
recipes/asn2gb
recipes/skesa
recipes/orfm
recipes/maaslin
recipes/seqmap
recipes/micropita
recipes/assemblytics
recipes/nemo
recipes/pblaa
recipes/translatorx
recipes/isoseq3
recipes/meme/4.11.1
recipes/meme/4.11.2
recipes/meme/4.8.1
recipes/bax2bam
recipes/break-point-inspector
recipes/embl-api-validator
recipes/readseq
recipes/smcounter2
recipes/hmftools-isofox
recipes/compalignp
recipes/seq2hla
recipes/reaper
recipes/genie
recipes/admixture
recipes/ucsc-fatovcf
recipes/mace
recipes/riboseq-rust
# ../../utils//fileType/FileRecordTypeChecker.h:120:21: error: 'constexpr' needed for in-class initialization of static data member 'const float FileRecordTypeChecker::PERCENTAGE_PRINTABLE' of non-integral type [-fpermissive]
recipes/bedtools/2.20.1
recipes/bedtools/2.19.1
# last-pair-probs.cc:501:10: error: cannot convert 'std::istream {aka std::basic_istream<char>}' to 'bool' in return
recipes/last/638
# This vendors bowtie2, which breaks the noarch: python setting
recipes/humann2
# vendors bzip2, samtools, etc.
recipes/rvtests
# Source URL no longer exists
recipes/python-mailund-newick
recipes/piret
# Requires obsolete matplotlib versions incompatible with our gfortran pinnings
recipes/riboplot
# Requires libXext.so.6 in the container
recipes/samsifter
# C++ syntax error: ../../lib/srprism/query_acct.hpp:118:51: error: expected primary-expression before ')' token { return query_info_[qn].MaxErr< paired >(); }
recipes/srprism
# Mulled test never completes
recipes/comparative-annotation-toolkit
# compilation or other errors in bulk
recipes/perl-bio-rna-rnaalisplit
recipes/perl-bio-eutilities
recipes/perl-bio-samtools
recipes/transcomb
recipes/detonate
recipes/bmtagger
# Killing bulk
recipes/rsat-core
# Packages failing in bulk that haven't yet received more attention
recipes/ig-checkflowtypes
recipes/bufet
recipes/mapsplice
recipes/pasta
recipes/moods
recipes/halla
recipes/qtip
recipes/tagger
recipes/compare-reads
recipes/strainest
recipes/r-peer
recipes/methylpy
recipes/openslide-python
recipes/t_coffee
recipes/shannon_cpp
recipes/ecopy
recipes/qiimetomaaslin
recipes/glimmerhmm
recipes/groopm
recipes/egglib
recipes/biolite
recipes/pauda
recipes/hicbrowser
recipes/bcftools-gtc2vcf-plugin/1.9
recipes/perl-biox-workflow-command
recipes/vqsr_cnn
recipes/bam-readcount
recipes/mqc
recipes/panx/1.6.0
recipes/panx/1.5.0
recipes/roprofile
recipes/chanjo
recipes/xxmotif
recipes/phylip
recipes/gqt
recipes/diamond_add_taxonomy
recipes/shapemapper
recipes/rnftools
recipes/embassy-phylip
recipes/triform2
recipes/haploclique/1.3.1
recipes/lcfit
recipes/blast/2.5.0
recipes/tadarida-c
recipes/w4mclstrpeakpics
# Requests python3, but is written for python2
recipes/ctat-mutations
# Unclear that the following old versions are still needed
recipes/augustus/3.2.3
recipes/bamtools/2.3.0
recipes/bowtie/1.1.1
recipes/freebayes/1.1.0.46
recipes/blast-legacy/2.2.22
recipes/perl-extutils-makemaker/7.24
recipes/tabix/0.2.5
recipes/tabix/0.2.6
recipes/rsem/1.2.21
recipes/stringtie/1.2.2
recipes/stringtie/1.2.4
recipes/stringtie/1.3.0
recipes/stringtie/1.3.3
recipes/art/3.11.14
recipes/biopet/0.8.0
recipes/metfrag/2.3.1
recipes/metfrag/2.4.2
recipes/varscan/2.4.2
recipes/bbmap/37.10
recipes/bbmap/37.17
recipes/bbmap/37.52
recipes/bbmap/37.99
recipes/gatk4/4.0.3.0
recipes/mira/3.4.1.1
recipes/mira/4.9.5
recipes/mira/4.9.6
recipes/ngmlr/0.2.3
recipes/ngmlr/0.2.4
recipes/rnastructure/5.7
recipes/rnastructure/6.0
# Seems to download maven and then have java issues
recipes/megagta
# The build string needs to be modified to account for the [nocairo] feature
recipes/genometools-genometools/1.5.10-nocairo
# Unknown issues
recipes/smina
recipes/cmv
recipes/fwdpp
recipes/parafly
recipes/smashbenchmarking
recipes/saffrontree
recipes/slclust
# tracking master branch
recipes/frc
# OSX failures - library loading
recipes/r-pscbs/0.61.0
# CMake Error at build-common/cmake/VersionHelper.cmake:11 (list):
recipes/somatic-sniper
# need to fix the download location, the checksum changes everytime
recipes/osra/2.1.0
# can't find file to patch at input line 3
recipes/erds
# non-standard test
recipes/fermikit
# build-error
recipes/mimodd
# error: possibly undefined macro: AM_GNU_GETTEXT
recipes/xcftools
# See https://github.com/bioconda/bioconda-recipes/pull/9458
recipes/spingo
# CMake Error: The source directory "/opt/conda/conda-bld/sqlitebrowser_1529759350498/work" does not appear to contain CMakeLists.txt.
recipes/sqlitebrowser
# no test, website down
recipes/sprinkles
# link not founds
recipes/soapcoverage
# download error
recipes/soapaligner
# missing tarball
recipes/sloika
recipes/genometools
recipes/nanonet
recipes/knot
recipes/moreutils
recipes/jali
recipes/intervalstats
# missing dep
recipes/oligotyping
recipes/oligotyping/2.0
# missing file
recipes/shiver
# missing binary
recipes/semeta
# Various C++ errors
recipes/rdock
# WARNING (talloc,lib/libpytalloc-util.so.2.1.9): did not find - or even know where to look for: /lib64/libm.so.6
recipes/talloc
# Skipped: vnl from /opt/recipe defines build/skip for this configuration ({'c_compiler': 'toolchain_c'}).
recipes/vnl
# something wrong with the test
recipes/remurna
# https://github.com/bcgsc/abyss/issues/130 and https://github.com/bioconda/bioconda-recipes/pull/6131
recipes/abyss/1.9.0
recipes/abyss/1.5.2
# Test uses a program that makes incorrect assumptions about shebangs (you can't reliably use "#!/usr/bin/env program --arguments")
recipes/amos
# aclocal error, but also downloads mauve tarballs, but there is now a mauve pkgs, is it still needed?
recipes/libmuscle
# compilation error
recipes/osra/2.0.1
recipes/lightning
# unable to access jarfile
recipes/effectivet3
# url broken
recipes/e-pcr
# linker error
recipes/discovar-denovo
# seqan errors
recipes/bowtie/1.0.0
# depends on perl-pcap
recipes/brass
# oh no TPP is failing, it was a nightmare to get it to compile in the first place :(
recipes/tpp
# perl dependency estmapper not available for 5.26
recipes/wgs-assembler
# requires wgs-assembler, which has a build fail
recipes/sprai
# missing dependency
recipes/genomebaser
recipes/garnet
recipes/tablet
# RuntimeError: Setuptools downloading is disabled in conda build. Be sure to add all dependencies in the meta.yaml url=https://pypi.org/simple/funcsigs/
recipes/pytest-marks
recipes/imfusion/0.3.0
recipes/imfusion/0.3.2
recipes/poretools/0.5.1
recipes/hubward
recipes/phylotoast
# git checkout problem
recipes/pbdagcon
recipes/icqsol
recipes/pout2mzid
# checksum always fails
recipes/ms
# GL missing, needs the extended base image
recipes/emperor
# sed: can't read /opt/conda/conda-bld/idba_1530055808563/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol/bin/aclocal: No such file or directory
recipes/idba
# PREFIX/lib is a directory
recipes/proot
# bin/g++: Command not found
recipes/metavelvet/1.1.01
recipes/metavelvet-sl
recipes/metavelvet
# cp: target `/opt/conda/conda-bld/meryl_1530057980094/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/include/' is not a directory
recipes/metavelvet-sl-pipeline
# Conflicting numpy and qiime
recipes/koeken
# cp: cannot stat `./mapsembler2_extremities/build/mapsembler2_extremities': No such file or directory
recipes/mapsembler2
# Local abort before MPI_INIT completed completed successfully, but am not able to aggregate error messages, and not able to guarantee that all other processes were killed!
recipes/primerprospector
# missing URL
recipes/intemap
# zlib missing
recipes/polymutt
# /opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/ld: cannot find -lc
recipes/piler
# no clue
recipes/portcullis/1.1.1
recipes/portcullis/1.1.0
# Skipped: guidescan from /opt/recipe defines build/skip for this configuration ({'numpy': '1.9', 'c_compiler': 'toolchain_c', 'openblas': '0.2.20'}).
recipes/guidescan
# installation error inside the container?
recipes/relocate2/2.0.1
# /usr/bin/env: python -Es: No such file or directory
recipes/pizzly
# natsort conflicts with python
recipes/qcumber
# Tests failed for spanki-0.5.1-py27h24bf2e0_1.tar.bz2 - moving package to /opt/conda/conda-bld/broken
recipes/spanki
# perl issues
recipes/vcftools/0.1.11
# broken pipe
recipes/antarna
# hashFunction.c:94: Error: invalid instruction suffix for `push'
recipes/soapdenovo2
# tarball missing and should be migrated I guess
recipes/ant
recipes/ngseqbasic
recipes/footprint
# missing bioc package
recipes/customprodb
# runtime dep missing in Docker?
recipes/bio-vcf
# fail in Docker test
recipes/fiji/20151222
recipes/fiji/20170530
# flexbar not found
recipes/flexbar/3.3.0
# Error: Could not find or load main class edu.duke.igsp.gkde.Main
recipes/fseq
# node error
recipes/azure-cli
recipes/arvados-cli
# takes to long to install
recipes/bcbio-rnaseq
# missing python requirements?
recipes/illuminate
# perl bad interpreter
recipes/cmfinder/0.2
# dotnet not found
recipes/canvas
# perl
recipes/vcftools/0.1.10
# perl script could not be found
recipes/rnaclust
# Unknown issues
recipes/lorma
recipes/microbecensus
recipes/minialign
recipes/nspdk
recipes/dreamtools
recipes/biomaj
recipes/cas-offinder
recipes/odose
# Outdated recipe, replaced by perl-bio-samtools
recipes/perl-bio-db-sam
# bad perl interpreter, needs patching a perl script
recipes/krona/2.6
recipes/krona/2.5
# /opt/conda/conda-bld/pash_1531691261758/_test_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_place/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- brl/util/textFileUtil (LoadError)
recipes/pash
# can't open file setup.py
recipes/meneco/1.5.2
# Permission denied ESTscan
recipes/perl-estscan2/2.1
# Uses deprecated POSIX::tmpnam() function, not maintained, partially replaced by estscan 3.0
recipes/perl-btlib/0.19
# takes a long time and then fails?
recipes/kmerinshort
# chmod: cannot access `genblast_v1.0.4': No such file or directory
recipes/genblasta
# ImportError: cannot import name 'aveQual'
recipes/nanosplit
# ../short_read_connector.sh: line 299: /opt/conda/conda-bld/shortreadconnector_1531045819227/work/build/bin/SRC_linker_ram: No such file or directory
recipes/short-read-connector
# Cpp no such file or dir
recipes/genepop
# Error: Unable to access jarfile
recipes/gfinisher
# gsl missing but specified
recipes/gfold
# missing python dep
recipes/hurry.filesize
# compilation error, missing boost header
recipes/k-slam
# missing fortran lib, will fix this upstream
recipes/ig-checkfcs
# np-likeness scorer no such file or directory
recipes/np-likeness-scorer
# Throws an error during testing
recipes/reago
# Error during mulled testing on circleci
recipes/ra-integrate
# real long build-time
recipes/perl-bio-viennangs
# /boost/intrusive/list.hpp:123:22: error: ‘const bool boost::intrusive::list_impl<boost::intrusive::bhtraits<dng::pileup::Node, boost::intrusive::list_node_traits<void*>, (boost::intrusive::link_mode_type)0u, boost::intrusive::dft_tag, 1u>, long unsigned int, true, void>::safemode_or_autounlink’ is private
recipes/denovogear
# /opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/ld: cannot find -lboost_system
recipes/metaprob
# Fails testing
recipes/cap-mirseq
recipes/graphprot
# OSX related errors, Linux should be fine. Most of the non-perl issues are due to LLVM used as a compiler, GCC should be fine
recipes/cgat-scripts
recipes/smalt
recipes/perl-pod-coverage-trustpod/0.100003
recipes/perl-symbol-util/0.0203
recipes/perl-test-pod-coverage/1.10
recipes/oases
recipes/metavelvet-sl-feature-extraction
recipes/music
recipes/kraken-ea
recipes/gnu-getopt
recipes/ghmm
recipes/domclust
recipes/bwa/0.6.2
recipes/c-ares
recipes/flock
recipes/cmfinder
recipes/cortex_con
recipes/cosi2
recipes/cufflinks
recipes/edlib
recipes/esimsa
recipes/fastuniq
recipes/fgap
recipes/funcannot
recipes/genepender
recipes/ghostx
recipes/libbambamc/0.5.00
recipes/ls-gkm
recipes/mosaik
recipes/mustang
recipes/ngmerge
recipes/nlstradamus
recipes/ocrad/0.21
recipes/panoct
recipes/perl-estscan1/1.3
recipes/pygresql
recipes/real
recipes/rmap
recipes/rnabob
recipes/sam
recipes/sff2fastq
recipes/snpomatic
recipes/soapdenovo2-gapcloser
recipes/spectral_hk
recipes/swiftlink
recipes/tedna
recipes/transtermhp
recipes/carna
# stringify can't find libmysqlclient.18
recipes/ucsc-overlapselect
recipes/ucsc-pslmap
recipes/ucsc-pslcdnafilter
# Source seems to have moved
recipes/discovar
# source code no longer available at URL
recipes/r-genometricorr
# (binary) source no longer available at URL
recipes/extracthifi
recipes/zmwfilter
# Packages that should be moved to conda-forge
recipes/autolog
recipes/avro-python2
recipes/avro-python3
recipes/bitstring
recipes/cityhash
recipes/collectl
recipes/elasticluster
recipes/epydoc
recipes/esmre
recipes/forked-path
recipes/gcs-oauth2-boto-plugin
recipes/gnuplot-py
recipes/justbackoff
recipes/kid
recipes/minimock
recipes/myriad
recipes/nose-capturestderr
recipes/pdfkit
recipes/perl-aceperl
recipes/perl-acme-damn
recipes/perl-algorithm-cluster
recipes/perl-algorithm-dependency
recipes/perl-algorithm-diff
recipes/perl-algorithm-munkres
recipes/perl-aliased
recipes/perl-apache-test
recipes/perl-appconfig
recipes/perl-app-cpanminus
recipes/perl-archive-extract
recipes/perl-archive-tar
recipes/perl-archive-tar-wrapper
recipes/perl-archive-zip
recipes/perl-array-compare
recipes/perl-array-set
recipes/perl-array-utils
recipes/perl-attribute-handlers
recipes/perl-authen-sasl-saslprep
recipes/perl-autodie
recipes/perl-autoloader
recipes/perl-b
recipes/perl-b-debug
recipes/perl-b-hooks-endofscope
recipes/perl-bignum
recipes/perl-bit-vector
recipes/perl-blib
recipes/perl-bloom-faster
recipes/perl-border-style
recipes/perl-btlib
recipes/perl-bundle-bioperl
recipes/perl-business-isbn
recipes/perl-business-isbn-data
recipes/perl-cache-cache
recipes/perl-cairo
recipes/perl-canary-stability
recipes/perl-capture-tiny
recipes/perl-carp
recipes/perl-carp-clan
recipes/perl-cgi
recipes/perl-cg-pipeline
recipes/perl-class-accessor
recipes/perl-class-data-inheritable
recipes/perl-class-inspector
recipes/perl-class-load
recipes/perl-class-load-xs
recipes/perl-class-methodmaker
recipes/perl-class-method-modifiers
recipes/perl-class-singleton
recipes/perl-class-std
recipes/perl-class-std-fast
recipes/perl-class-xsaccessor
recipes/perl-clone
recipes/perl-clone-choose
recipes/perl-clone-pp
recipes/perl-color-theme
recipes/perl-common-sense
recipes/perl-compress-bgzf
recipes/perl-compress-raw-bzip2
recipes/perl-compress-raw-zlib
recipes/perl-config-any
recipes/perl-config-autoconf
recipes/perl-config-general
recipes/perl-config-simple
recipes/perl-config-tiny
recipes/perl-constant
recipes/perl-const-fast
recipes/perl-convert-binary-c
recipes/perl-convert-binhex
recipes/perl-cpan-meta
recipes/perl-cpan-meta-check
recipes/perl-cpan-meta-requirements
recipes/perl-cpan-meta-validator
recipes/perl-cpan-meta-yaml
recipes/perl-cpan-shell
recipes/perl-crypt-openssl-random
recipes/perl-crypt-openssl-rsa
recipes/perl-crypt-rc4
recipes/perl-data-compare
recipes/perl-data-dump
recipes/perl-data-dumper
recipes/perl-data-lock
recipes/perl-data-match
recipes/perl-data-munge
recipes/perl-data-optlist
recipes/perl-data-stag
recipes/perl-data-utilities
recipes/perl-data-uuid
recipes/perl-data-visitor
recipes/perl-data-walk
recipes/perl-date-format
recipes/perl-date-manip
recipes/perl-datetime
recipes/perl-datetime-format-strptime
recipes/perl-datetime-locale
recipes/perl-datetime-timezone
recipes/perl-dbd-mysql
recipes/perl-dbd-pg
recipes/perl-dbd-sqlite
recipes/perl-db-file
recipes/perl-dbi
recipes/perl-dbm-deep
recipes/perl-devel-assert
recipes/perl-devel-checkbin
recipes/perl-devel-checkos
recipes/perl-devel-cover
recipes/perl-devel-cycle
recipes/perl-devel-globaldestruction
recipes/perl-devel-overloadinfo
recipes/perl-devel-size
recipes/perl-devel-stacktrace
recipes/perl-devel-symdump
recipes/perl-digest-crc32
recipes/perl-digest-hmac
recipes/perl-digest-md5
recipes/perl-digest-md5-file
recipes/perl-digest-perl-md5
recipes/perl-digest-sha
recipes/perl-digest-sha1
recipes/perl-dist-checkconflicts
recipes/perl-dumbbench
recipes/perl-dynaloader
recipes/perl-email-date-format
recipes/perl-encode
recipes/perl-encode-locale
recipes/perl-env
recipes/perl-env-path
recipes/perl-error
recipes/perl-escape-houdini
recipes/perl-eval-closure
recipes/perl-excel-writer-xlsx
recipes/perl-exception-class
recipes/perl-experimental
recipes/perl-exporter
recipes/perl-exporter-tidy
recipes/perl-exporter-tiny
recipes/perl-extutils-cbuilder
recipes/perl-extutils-config
recipes/perl-extutils-constant
recipes/perl-extutils-cppguess
recipes/perl-extutils-depends
recipes/perl-extutils-helpers
recipes/perl-extutils-installpaths