--
--
--
--
--
--
--
Background:I’ve made a mapping.txt file: JB.Mapping.txtI have an .FNA file: JB.fnaHere’s what it looks like:gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ head JB.fna>112_BC1_1 RXB0T:48:298 orig_bc=ACTCA new_bc=ACTCA bc_diffs=0ACGAGCTGACGACAGCCATGCACCACCTGTCTACCGGTTCCCGAAGGCACAGTCATACTTCTATGACCTCCCGGAGATGTCAAGGTCTGGTA>112_BC1_2 RXB0T:49:264 orig_bc=ACTCA new_bc=ACTCA bc_diffs=0ACGAGCTGACGACAGCCATGCAGCACCTGTGTTACGGTTCCCGAAGGCACTCCTCCGTCTCTGGAGGATTCCGTACATGTCAAGACC>112_BC1_3 RXB0T:32:335 orig_bc=ACTCA new_bc=ACTCA bc_diffs=0ACGAGCTGCGACAACCATGCACCACCTGCACACGACCAACTAAATGCCACCACATCTCTGCAGTGTCGCCGTGCATGTCAAGCCT>112_BC1_4 RXB0T:40:344 orig_bc=ACTCA new_bc=ACTCA bc_diffs=0ACGAGCTGACGACAACCGTGCACCACCTGTTTTCTGGCTTCCGAAGAAGAGGAACTATCTCTAGTTCTGTCCATCAATGTCAAGACC>112_BC1_5 RXB0T:44:307 orig_bc=ACTCA new_bc=ACTCA bc_diffs=0ACGAGCTGACGACAGCCATGCAGCACCTGTCTCATGGTTCCCGAAGGCACTCCTCCGTCTCTGGAGGATTCCGTACATGTCAStep 1) Move the Mapping and .fna files to: ~/qiime_software/qiime-1.5.0-release/lib/qiime/ , where ~ is short for the full path: /mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/lib/qiimeStep 2) Check the Mapping file:From within ~/qiime_software/qiime-1.5.0-release/lib/qiime/ run:check_id_map.pyNow, when I did this with the test data (using different Mapping and .fna files) all went well, and I went much deeper through the tutorial, but now I get:gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ check_id_map.py -m JB.Mapping.txt -o mapping_outputJBcheck_id_map.py: command not foundweird, since that script is sitting right there in the same directory…ok…so try calling python specifically:gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ python check_id_map.py -m JB.Mapping.txt -o mapping_outputJB
Traceback (most recent call last):
File "check_id_map.py", line 58, in <module>from qiime.util import get_qiime_project_dir, duplicates_indices
ImportError: No module named qiime.util
I ran into many of these ImportErrors when I was trying to figure out what directory to try running things from. Checking the forums it seems to be issues with various packages knowing where various dependencies and scripts are located. Typing echo $PYTHONPATH yields:gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ echo $PYTHONPATHgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$Nothing, just returns the prompt.I installed QIIME using the Ubuntu 12.04 instructions here: http://qiime.org/install/ubuntu_install.htmlParaphrasing,1) Uncomment the universe and multiverse repositories - they were already uncommented. Good, moving on.2) get all the pieces with apt-get, this command ran without issue.3) Make a QIIME directory, wget the tarball, unpack it, and run the deploy script. All libraries installed successfully. No errors.Once installed, use cd to get into ~/qiime_software/qiime-1.5.0-release/tests/from within the tests directory, check the QIIME scripts by running:all_tests.py from within the tests directory. Output scrolled by ending in:Result summary==============Unit test result summary------------------------Failed the following unit tests./mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pick_otus.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_mothur.pyFailed the following unit tests, in part or whole due to missing external applications.Depending on the QIIME features you plan to use, this may not be critical./mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_assign_taxonomy.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_denoiser/test_make_cluster_jobs.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_make_per_library_sff.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_rtax.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_usearch.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_trim_sff_primers.pyBasic script test result summary--------------------------------All basic script tests passed successfully.Could not run script usage tests because qiime_test_data is not defined in your qiime_config.Ok, some stuff failed, most succeeded, including basic scripts, so without a log file, moving on... This was the way things stood when I proceeded with the test runs, but now I have ImportError.
You might want to keep your data in a separate folder from the library and scripts files-although it's unlikely to happen, you don't want to accidentally delete or overwrite the files that are there.
I think you need to add these two lines to your .bashrc, and reopen the terminal and see if you can call QIIME scripts correctly.
export PYTHONPATH=/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/:$PYTHONPATH
export PYTHONPATH=/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/lib/:$PYTHONPATH
export PATH=/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/scripts/:$PATH
Once this is done, save the .bashrc file, and then close and reopen the terminal.
Then type:
check_id_map.py -h
and see if this gives you the proper help text.
Thanks for the reply. I edited my .bashrc (attached) and re-opened my terminal, navigated to the same path as before and tried to get the help for the check_id_map.py as you instructed:gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ check_id_map.py -hcheck_id_map.py: command not foundgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$ python check_id_map.py -h
Traceback (most recent call last):
File "check_id_map.py", line 58, in <module>from qiime.util import get_qiime_project_dir, duplicates_indices
ImportError: No module named qiime.util
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/lib/qiime$Regarding my data in separate folders, I would love to do this, but I couldn’t get anything to run before unless I was in the lib/qiime directory….now I can’t get anything to run anywhere.
The install seems quite strange, and I would recommend at this point to edit the .bashrc and comment out all of the lines dealing with QIIME (put a # in front of the lines), redownload QIIME, and install starting with the instructions here: http://www.qiime.org/install/install.html#unpacking-qiime-release-onlyThose instructions should get the PATH and PYTHONPATH variable set up correctly, so you can call QIIME scripts, like check_id_map.py, from any location, and it should also be able to properly import the library files.
gwatts@futscherlab32gb:~$ pwd/mnt/datas/home/gwattsgwatts@futscherlab32gb:~$ lsBugSeq16s QIIME_files src
gwatts@futscherlab32gb:~$ rm -rf src
gwatts@futscherlab32gb:~$ mkdir qiime_software/gwatts@futscherlab32gb:~$ wget ftp://thebeast.colorado.edu/pub/QIIME-v1.5.0-dependencies/app-deploy-qiime-1.5.0.tgz--2012-09-13 10:50:04-- ftp://thebeast.colorado.edu/pub/QIIME-v1.5.0-dependencies/app-deploy-qiime-1.5.0.tgz=> `app-deploy-qiime-1.5.0.tgz'Resolving thebeast.colorado.edu (thebeast.colorado.edu)... 128.138.93.17Connecting to thebeast.colorado.edu (thebeast.colorado.edu)|128.138.93.17|:21... connected.Logging in as anonymous ... Logged in!==> SYST ... done. ==> PWD ... done.==> TYPE I ... done. ==> CWD (1) /pub/QIIME-v1.5.0-dependencies ... done.==> SIZE app-deploy-qiime-1.5.0.tgz ... 21057==> PASV ... done. ==> RETR app-deploy-qiime-1.5.0.tgz ... done.Length: 21057 (21K) (unauthoritative)100%[===================================================================================================================================================================================================>] 21,057 --.-K/s in 0.09s2012-09-13 10:50:05 (240 KB/s) - `app-deploy-qiime-1.5.0.tgz' saved [21057]gwatts@futscherlab32gb:~$ tar zxvf app-deploy-qiime-1.5.0.tgzapp-deploy-qiime-1.5.0/app-deploy-qiime-1.5.0/app-deploy.pyapp-deploy-qiime-1.5.0/etc/app-deploy-qiime-1.5.0/lib/app-deploy-qiime-1.5.0/READMEapp-deploy-qiime-1.5.0/lib/__init__.pyapp-deploy-qiime-1.5.0/lib/application.pyapp-deploy-qiime-1.5.0/lib/config.pyapp-deploy-qiime-1.5.0/lib/custom.pyapp-deploy-qiime-1.5.0/lib/data.pyapp-deploy-qiime-1.5.0/lib/dependencies.pyapp-deploy-qiime-1.5.0/lib/deploy.pyapp-deploy-qiime-1.5.0/lib/environment.pyapp-deploy-qiime-1.5.0/lib/logconfig.pyapp-deploy-qiime-1.5.0/lib/util.pyapp-deploy-qiime-1.5.0/etc/qiime_1.5.0.confapp-deploy-qiime-1.5.0/etc/qiime_1.5.0_repository.confapp-deploy-qiime-1.5.0/etc/qiime_compy.conf
gwatts@futscherlab32gb:~$ cd app-deploy-qiime-1.5.0gwatts@futscherlab32gb:~/app-deploy-qiime-1.5.0$ python app-deploy.py $HOME/qiime_software/ -f etc/qiime_1.5.0.conf --force-remove-failed-dirs
DEPLOYMENT SUMMARYPackages deployed successfully:data-lanemask, rtax, clearcut, cdbtools, raxml, drisee, ampliconnoise, data-core, cytoscape, vienna, fasttree, pplacer, gg_otus, infernal, blast, muscle, parsinsert, cdhit, rdpclassifier, uclust, chimeraslayer, mothur, python, tornado, setuptools, ipython, SQLAlchemy, pyzmq, MySQL-python, sphinx, mpi4py, numpy, biom-format, pycogent, pprospector, pynast, r, matplotlib, qiimePackages skipped (assumed successful):Packages failed to deploy:
export PYTHONPATH=/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/:$PYTHONPATHexport PATH=/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/scripts/:$PATHsource /mnt/datas/home/gwatts/qiime_software/activate.sh
source /mnt/datas/home/gwatts/.bashrc
gwatts@futscherlab32gb:~$ source .bashrcgwatts@futscherlab32gb:~$
gwatts@futscherlab32gb:~$ print_qiime_config.py -t
System information==================Platform: linux2
Python version: 2.7.3 (default, Aug 1 2012, 05:25:23) [GCC 4.6.3]Python executable: /mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin/pythonDependency versions===================PyCogent version: 1.5.1
NumPy version: 1.5.1matplotlib version: 1.1.0
biom-format version: 0.9.3QIIME library version: 1.5.0QIIME script version: 1.5.0PyNAST version (if installed): 1.1RDP Classifier version (if installed): rdp_classifier-2.2.jarQIIME config values===================blastmat_dir: /mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/datasc_queue: all.qtopiaryexplorer_project_dir: Nonepynast_template_alignment_fp: /mnt/datas/home/gwatts/qiime_software/core_set_aligned.fasta.imputedcluster_jobs_fp: /mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin/start_parallel_jobs.pypynast_template_alignment_blastdb: Noneassign_taxonomy_reference_seqs_fp: /mnt/datas/home/gwatts/qiime_software/gg_otus-4feb2011-release/rep_set/gg_97_otus_4feb2011.fastatorque_queue: friendlyqqiime_test_data_dir: Nonetemplate_alignment_lanemask_fp: /mnt/datas/home/gwatts/qiime_software/lanemask_in_1s_and_0sjobs_to_start: 1cloud_environment: Falseqiime_scripts_dir: /mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bindenoiser_min_per_core: 50working_dir: /tmp/python_exe_fp: /mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin/pythontemp_dir: /tmp/blastall_fp: /mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/bin/blastallseconds_to_sleep: 60assign_taxonomy_id_to_taxonomy_fp: /mnt/datas/home/gwatts/qiime_software/gg_otus-4feb2011-release/taxonomies/greengenes_tax_rdp_train.txtrunning checks:test_FastTree_supported_version (__main__.Qiime_config)FastTree is in path and version is supported ... oktest_INFERNAL_supported_version (__main__.Qiime_config)INFERNAL is in path and version is supported ... oktest_ParsInsert_supported_version (__main__.Qiime_config)ParsInsert is in path and version is supported ... oktest_R_supported_version (__main__.Qiime_config)R is in path and version is supported ... oktest_ampliconnoise_install (__main__.Qiime_config)AmpliconNoise install looks sane. ... oktest_blast_supported_version (__main__.Qiime_config)blast is in path and version is supported ... oktest_blastall_fp (__main__.Qiime_config)blastall_fp is set to a valid path ... oktest_blastmat_dir (__main__.Qiime_config)blastmat_dir is set to a valid path. ... oktest_cdbtools_supported_version (__main__.Qiime_config)cdbtools is in path and version is supported ... oktest_cdhit_supported_version (__main__.Qiime_config)cd-hit is in path and version is supported ... oktest_chimeraSlayer_install (__main__.Qiime_config)no obvious problems with ChimeraSlayer install ... oktest_clearcut_supported_version (__main__.Qiime_config)clearcut is in path and version is supported ... oktest_cluster_jobs_fp (__main__.Qiime_config)cluster_jobs_fp is set to a valid path and is executable ... oktest_denoiser_supported_version (__main__.Qiime_config)denoiser aligner is ready to use ... ok
test_for_obsolete_values (__main__.Qiime_config)local qiime_config has no extra params ... oktest_matplotlib_suported_version (__main__.Qiime_config)
maptplotlib version is supported ... ok
test_mothur_supported_version (__main__.Qiime_config)mothur is in path and version is supported ... FAILtest_muscle_supported_version (__main__.Qiime_config)
muscle is in path and version is supported ... oktest_numpy_suported_version (__main__.Qiime_config)numpy version is supported ... oktest_pplacer_supported_version (__main__.Qiime_config)pplacer is in path and version is supported ... oktest_pynast_suported_version (__main__.Qiime_config)pynast version is supported ... ok
test_pynast_template_alignment_blastdb_fp (__main__.Qiime_config)pynast_template_alignment_blastdb, if set, is set to a valid path ... oktest_pynast_template_alignment_fp (__main__.Qiime_config)pynast_template_alignment, if set, is set to a valid path ... oktest_python_exe_fp (__main__.Qiime_config)python_exe_fp is set to a working python env ... oktest_python_supported_version (__main__.Qiime_config)python is in path and version is supported ... FAILtest_qiime_scripts_dir (__main__.Qiime_config)qiime_scripts_dir, if set, is set to a valid path ... oktest_qiime_test_data_dir (__main__.Qiime_config)qiime_test_data_dir, if set, is set to a valid path ... oktest_raxmlHPC_supported_version (__main__.Qiime_config)
raxmlHPC is in path and version is supported ... ok
test_rtax_supported_version (__main__.Qiime_config)rtax is in path and version is supported ... FAILtest_temp_dir (__main__.Qiime_config)temp_dir, if set, is set to a valid path ... oktest_template_alignment_lanemask_fp (__main__.Qiime_config)template_alignment_lanemask, if set, is set to a valid path ... oktest_uclust_supported_version (__main__.Qiime_config)
uclust is in path and version is supported ... ok
test_usearch_supported_version (__main__.Qiime_config)usearch is in path and version is supported ... FAILtest_working_dir (__main__.Qiime_config)working_dir, if set, is set to a valid path ... ok======================================================================
FAIL: test_mothur_supported_version (__main__.Qiime_config)
mothur is in path and version is supported----------------------------------------------------------------------
Traceback (most recent call last):File "/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin/print_qiime_config.py", line 523, in test_mothur_supported_version
% ('.'.join(map(str,acceptable_version)), version_string))
AssertionError: Unsupported mothur version. 1.25.0 is required, but running mothur: error while loading shared libraries: libreadline.so.5: cannot open shared object file: No such file or directory
.======================================================================FAIL: test_python_supported_version (__main__.Qiime_config)python is in path and version is supported----------------------------------------------------------------------
Traceback (most recent call last):File "/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin/print_qiime_config.py", line 338, in test_python_supported_version
version_string))AssertionError: Unsupported python version. Must be >= 2.7.1 and <= 2.7.2 , but running 2.7.3.======================================================================
FAIL: test_rtax_supported_version (__main__.Qiime_config)
rtax is in path and version is supported----------------------------------------------------------------------
Traceback (most recent call last):File "/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin/print_qiime_config.py", line 620, in test_rtax_supported_version
% ('.'.join(map(str,acceptable_version)), version_string))
AssertionError: Unsupported rtax version. (0, 981).(0, 981) is required, but running 0.982.
======================================================================FAIL: test_usearch_supported_version (__main__.Qiime_config)usearch is in path and version is supported----------------------------------------------------------------------
Traceback (most recent call last):File "/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin/print_qiime_config.py", line 668, in test_usearch_supported_version
"which components of QIIME you plan to use.")AssertionError: usearch not found. This may or may not be a problem depending on which components of QIIME you plan to use.----------------------------------------------------------------------
Ran 34 tests in 0.445sFAILED (failures=4)gwatts@futscherlab32gb:~$
gwatts@futscherlab32gb:~$ test_pick_otus.pytest_pick_otus.py: command not foundgwatts@futscherlab32gb:~$ pwd/mnt/datas/home/gwattsgwatts@futscherlab32gb:~$ cd qiime_software/qiime-1.5.0-release/tests/gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/tests$ test_pick_otus.pytest_pick_otus.py: command not foundgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/tests$
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ ls18S_tutorial_files Fasting_Example.fna Fasting_Example.qual Fasting_Example.sff Fasting_Example.sff.txt Fasting_Map.txt qiime_tutorial_commands_parallel.sh qiime_tutorial_commands_serial.sh README
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ check_id_map.py -m Fasting_Map.txt -o mapping_output
No errors or warnings were found in mapping file.
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ split_libraries.py -m Fasting_Map.txt -f Fasting_Example.fna -q Fasting_Example.qual -o split_library_output
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ cd split_library_output/
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0/split_library_output$ lshistograms.txt seqs.fna split_library_log.txt
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0/split_library_output$ cd ..gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ pick_otus_through_otu_table.py -i split_library_output/seqs.fna -o otus
gwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0$ cd otusgwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0/otus$ lslog_20120913114937.txt otu_table.biom pynast_aligned_seqs rdp_assigned_taxonomy rep_set rep_set.tre uclust_picked_otusgwatts@futscherlab32gb:~/QIIME_files/qiime_tutorial-v1.5.0/otus$
gwatts@futscherlab32gb:~/QIIME_files$ pick_otus_through_otu_table.py -i test.fna -o test.otusgwatts@futscherlab32gb:~/QIIME_files$ cd test.otus/gwatts@futscherlab32gb:~/QIIME_files/test.otus$ lslog_20120913115752.txt otu_table.biom pynast_aligned_seqs rdp_assigned_taxonomy rep_set rep_set.tre uclust_picked_otus
gwatts@futscherlab32gb:~/QIIME_files$ make_otu_heatmap_html.py -i test.otus/otu_table.biom -o test.otus/OTU_Heatmap/gwatts@futscherlab32gb:~/QIIME_files$ cd test.otus/gwatts@futscherlab32gb:~/QIIME_files/test.otus$ cd OTU_Heatmap/gwatts@futscherlab32gb:~/QIIME_files/test.otus/OTU_Heatmap$ lsjs otu_table.html
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release$ python tests/all_tests.py > test_results.txtgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release$ ls -ltotal 408drwxrwxr-x 2 gwatts gwatts 12288 Sep 13 10:57 bindrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:57 build-rw-r--r-- 1 gwatts gwatts 44470 Sep 13 10:57 ChangeLogdrwxr-xr-x 12 gwatts gwatts 4096 Sep 13 10:57 doc-rw-r--r-- 1 gwatts gwatts 105 Sep 13 10:57 INSTALLdrwxrwxr-x 2 gwatts gwatts 4096 Sep 13 15:00 jobsdrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:57 libdrwxr-xr-x 6 gwatts gwatts 4096 Sep 13 10:57 qiime-rw-r--r-- 1 gwatts gwatts 3322 Sep 13 10:57 qiime_parameters.txtdrwxr-xr-x 3 gwatts gwatts 4096 Sep 13 10:57 qiime_tutorial-rw-rw-r-- 1 gwatts gwatts 532 Sep 13 15:18 randomized_coords2.txt-rw-r--r-- 1 gwatts gwatts 3019 Sep 13 10:57 README-rw-r--r-- 1 gwatts gwatts 46 Sep 13 10:57 requirements.txtdrwxr-xr-x 2 gwatts gwatts 12288 Sep 13 10:57 scripts-rw-r--r-- 1 gwatts gwatts 3955 Sep 13 10:57 setup.py-rw-rw-r-- 1 gwatts gwatts 228386 Sep 13 15:39 test_results.txtdrwxr-xr-x 6 gwatts gwatts 4096 Sep 13 10:57 tests-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 14:33 tmp3tbaBSN4hioE0AZ39UOy.fasta-rw-rw-r-- 1 gwatts gwatts 124 Sep 13 15:18 tmp7puSUsbkBwT2aaLxg7L7.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 14:33 tmpc4Et9OFlrXezgrxzf0q6.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 15:02 tmpfXsTl0NIiIzBSGWP07pU.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 14:17 tmpGLf0I2ONOWmGXqlhqGS7.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 15:02 tmpk0eILDl73dRPepuSK19C.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 14:17 tmpkWB0AhM7k5yLX0Ubvr96.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 15:02 tmploC67GogMqq4nDZXo0O6.fasta-rw-rw-r-- 1 gwatts gwatts 57 Sep 13 15:18 tmpOhcgcUwnokFs0qKzit70.fasta-rw-rw-r-- 1 gwatts gwatts 124 Sep 13 14:33 tmpqGtEC5gagTgED0O7TFPt.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 15:18 tmptAlcy4uKAGvpPfi7Oaz6.fasta-rw-rw-r-- 1 gwatts gwatts 57 Sep 13 14:33 tmpUHGq9GKOZvgYUDdrA0HT.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 15:18 tmpWH6afTedrM3rkex7Zoka.fasta-rw-rw-r-- 1 gwatts gwatts 123 Sep 13 14:17 tmpYW6gKIp4htkuUTx3Xe0Y.fastadrwxr-xr-x 3 gwatts gwatts 4096 Sep 13 10:57 web
Result summary==============Unit test result summary------------------------Failed the following unit tests./mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pick_otus.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_mothur.pyFailed the following unit tests, in part or whole due to missing external applications.Depending on the QIIME features you plan to use, this may not be critical./mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_assign_taxonomy.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_denoiser/test_make_cluster_jobs.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_make_per_library_sff.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_rtax.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports/test_usearch.py/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/tests/test_trim_sff_primers.pyBasic script test result summary--------------------------------All basic script tests passed successfully.Could not run script usage tests because qiime_test_data is not defined in your qiime_config.
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/qiime_tutorial$ pwd/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/qiime_tutorialgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/qiime_tutorial$ ls
USEARCH is a stand-alone binaryUSEARCH is distributed as one file, known as the binary file or executable file. It is completely self-contained: it does not require configuration files, environment variables, third-party libraries or other external dependencies. There is no setup script or installer because they're not needed. To install it, all you do is download or copy the binary to a directory that is accessible from the computer where you want to run the code. For convenience, you may want to rename the binary file to usearch to avoid typing long names like usearch6.0.98_i86linux32.Missing DLL problem in WindowsSee here if you get missing a vcomp100.dll error.Execute permissionsUnder Linux and OSX you must ensure that you have read and execute permissions for the binary file. If needed, use the chmod command to set the execute bit, e.g.:chmod +x /usr/bin/usearch6.0.98_i86linux32PATH or pathnameThe binary file must be in one of the directories specified in your PATH variable, or you must type the full path to the file, e.g. for Linux:/usr/bin/usearch6.0.98_i86linux32 -id 0.9 -cluster_fast reads.fasta -uc results.ucUnder the Windows CMD shell, path names are separated by backslashes, e.g.:C:\MyPrograms\usearch6.2.98_win32.exe -id 0.9 -cluster_fast reads.fasta -uc results.uc
activate.sh chimeraslayer-4.29.2010-release gg_otus-4feb2011-release mpi4py-1.2.2-release pprospector-1.0.1-release r-2.12.0-release SQLAlchemy-0.7.1-releaseampliconnoise-1.25-release clearcut-1.0.9-release infernal-1.0.2-release muscle-3.8.31-release pycogent-1.5.1-release raxml-7.3.0-release tornado-2.2.1-releasebiom-format-0.9.3-release core_set_aligned.fasta.imputed ipython-0.13-release MySQL-python-1.2.3-release pynast-1.1-release rdpclassifier-2.2-release uclust-1.2.22-releaseblast-2.2.22-release cytoscape-2.7.0-release lanemask_in_1s_and_0s numpy-1.5.1-release python-2.7.1-release rtax-0.982-release usearch5.2.32_i86linux32cdbtools-10.11.2010-release drisee-1.2-release matplotlib-1.1.0-release parsinsert-1.0.4-release pyzmq-2.1.9-release setuptools-0.6c11-release vienna-1.8.4-releasecdhit-3.1-release fasttree-2.1.3-release mothur-1.25.0-release pplacer-1.1-release qiime-1.5.0-release sphinx-1.0.4-release
gwatts@futscherlab32gb:~/qiime_software$ chmod +x usearch5.2.32_i86linux32gwatts@futscherlab32gb:~/qiime_software$ ls -ltotal 38812-rw-rw-r-- 1 gwatts gwatts 3985 Sep 13 10:58 activate.shdrwxr-xr-x 22 gwatts gwatts 4096 May 19 2011 ampliconnoise-1.25-releasedrwxr-xr-x 6 gwatts gwatts 4096 May 1 19:21 biom-format-0.9.3-releasedrwxr-xr-x 5 gwatts gwatts 4096 Sep 27 2009 blast-2.2.22-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:50 cdbtools-10.11.2010-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:53 cdhit-3.1-releasedrwxr-xr-x 7 gwatts gwatts 4096 Apr 29 2010 chimeraslayer-4.29.2010-releasedrwxr-xr-x 3 gwatts gwatts 4096 Sep 13 10:50 clearcut-1.0.9-release-rw-rw-r-- 1 gwatts gwatts 37975992 Sep 13 10:51 core_set_aligned.fasta.imputeddrwx------ 14 gwatts gwatts 4096 Sep 13 10:51 cytoscape-2.7.0-releasedrwxrwxr-x 2 gwatts gwatts 4096 Apr 2 15:34 drisee-1.2-releasedrwx------ 2 gwatts gwatts 4096 Sep 13 10:52 fasttree-2.1.3-releasedrwxrwxr-x 6 gwatts gwatts 4096 Feb 5 2011 gg_otus-4feb2011-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:52 infernal-1.0.2-releasedrwxrwxr-x 5 gwatts gwatts 4096 Sep 13 10:54 ipython-0.13-release-rw-rw-r-- 1 gwatts gwatts 7683 Sep 13 10:50 lanemask_in_1s_and_0sdrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:56 matplotlib-1.1.0-releasedrwxr-xr-x 3 gwatts gwatts 4096 Aug 6 07:20 mothur-1.25.0-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:54 mpi4py-1.2.2-releasedrwx------ 2 gwatts gwatts 4096 Sep 13 10:52 muscle-3.8.31-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:54 MySQL-python-1.2.3-releasedrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:55 numpy-1.5.1-releasedrwx------ 2 gwatts gwatts 4096 Sep 13 10:53 parsinsert-1.0.4-releasedrwx------ 2 gwatts gwatts 4096 May 30 17:05 pplacer-1.1-releasedrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:56 pprospector-1.0.1-releasedrwxrwxr-x 9 gwatts gwatts 4096 Sep 13 10:56 pycogent-1.5.1-releasedrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:57 pynast-1.1-releasedrwxrwxr-x 6 gwatts gwatts 4096 Sep 13 10:54 python-2.7.1-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:54 pyzmq-2.1.9-releasedrwxrwxr-x 12 gwatts gwatts 4096 Sep 13 16:18 qiime-1.5.0-releasedrwxrwxr-x 5 gwatts gwatts 4096 Sep 13 10:56 r-2.12.0-releasedrwxr-xr-x 2 gwatts gwatts 4096 Sep 13 10:50 raxml-7.3.0-releasedrwxr-xr-x 6 gwatts gwatts 4096 Mar 31 2010 rdpclassifier-2.2-releasedrwxr-xr-x 4 gwatts gwatts 4096 Jul 5 09:31 rtax-0.982-releasedrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:54 setuptools-0.6c11-releasedrwxrwxr-x 4 gwatts gwatts 4096 Sep 13 10:54 sphinx-1.0.4-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:54 SQLAlchemy-0.7.1-releasedrwxrwxr-x 3 gwatts gwatts 4096 Sep 13 10:54 tornado-2.2.1-releasedrwxrwxr-x 2 gwatts gwatts 4096 Sep 13 10:53 uclust-1.2.22-release-rwxrwxr-x 1 gwatts gwatts 1551097 Sep 13 17:07 usearch5.2.32_i86linux32drwxrwxr-x 6 gwatts gwatts 4096 Sep 13 10:52 vienna-1.8.4-release
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports$ python test_usearch.py > test_usearch_results.txt
======================================================================ERROR: test_usearch_sort_by_abundance_filter (__main__.UsearchTests)Properly sorts fasta by abundance, filters low count otus
----------------------------------------------------------------------Traceback (most recent call last):
File "test_usearch.py", line 534, in test_usearch_sort_by_abundance_filterworking_dir=self.tmp_dir)File "/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/lib/qiime/pycogent_backports/usearch.py", line 492, in usearch_sort_by_abundanceapp = Usearch(params, WorkingDir=working_dir, HALT_EXEC=HALT_EXEC)File "/mnt/datas/home/gwatts/qiime_software/pycogent-1.5.1-release/lib/python2.7/site-packages/cogent/app/util.py", line 166, in __init__self._error_on_missing_application(params)File "/mnt/datas/home/gwatts/qiime_software/pycogent-1.5.1-release/lib/python2.7/site-packages/cogent/app/util.py", line 420, in _error_on_missing_application% commandApplicationNotFoundError: Cannot find usearch. Is it installed? Is it in your path?----------------------------------------------------------------------Ran 25 tests in 0.053sFAILED (errors=19)
--
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports$ echo $PATH/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin:/mnt/datas/home/gwatts/qiime_software/r-2.12.0-release/bin:/mnt/datas/home/gwatts/qiime_software/pynast-1.1-release/bin:/mnt/datas/home/gwatts/qiime_software/pprospector-1.0.1-release/bin:/mnt/datas/home/gwatts/qiime_software/biom-format-0.9.3-release/scripts/:/mnt/datas/home/gwatts/qiime_software/pyzmq-2.1.9-release/bin:/mnt/datas/home/gwatts/qiime_software/ipython-0.13-release/bin:/mnt/datas/home/gwatts/qiime_software/tornado-2.2.1-release/bin:/mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin:/mnt/datas/home/gwatts/qiime_software/mothur-1.25.0-release/.:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/ChimeraSlayer:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/NAST-iEr:/mnt/datas/home/gwatts/qiime_software/uclust-1.2.22-release/.:/mnt/datas/home/gwatts/qiime_software/rdpclassifier-2.2-release/.:/mnt/datas/home/gwatts/qiime_software/cdhit-3.1-release/.:/mnt/datas/home/gwatts/qiime_software/parsinsert-1.0.4-release/.:/mnt/datas/home/gwatts/qiime_software/muscle-3.8.31-release/.:/mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/bin:/mnt/datas/home/gwatts/qiime_software/infernal-1.0.2-release/bin:/mnt/datas/home/gwatts/qiime_software/pplacer-1.1-release/.:/mnt/datas/home/gwatts/qiime_software/fasttree-2.1.3-release/.:/mnt/datas/home/gwatts/qiime_software/vienna-1.8.4-release/.:/mnt/datas/home/gwatts/qiime_software/cytoscape-2.7.0-release/.:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/Scripts:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/bin:/mnt/datas/home/gwatts/qiime_software/drisee-1.2-release/.:/mnt/datas/home/gwatts/qiime_software/raxml-7.3.0-release/.:/mnt/datas/home/gwatts/qiime_software/cdbtools-10.11.2010-release/.:/mnt/datas/home/gwatts/qiime_software/clearcut-1.0.9-release/.:/mnt/datas/home/gwatts/qiime_software/rtax-0.982-release/.:/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin:/mnt/datas/home/gwatts/qiime_software/r-2.12.0-release/bin:/mnt/datas/home/gwatts/qiime_software/pynast-1.1-release/bin:/mnt/datas/home/gwatts/qiime_software/pprospector-1.0.1-release/bin:/mnt/datas/home/gwatts/qiime_software/biom-format-0.9.3-release/scripts/:/mnt/datas/home/gwatts/qiime_software/pyzmq-2.1.9-release/bin:/mnt/datas/home/gwatts/qiime_software/ipython-0.13-release/bin:/mnt/datas/home/gwatts/qiime_software/tornado-2.2.1-release/bin:/mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin:/mnt/datas/home/gwatts/qiime_software/mothur-1.25.0-release/.:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/ChimeraSlayer:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/NAST-iEr:/mnt/datas/home/gwatts/qiime_software/uclust-1.2.22-release/.:/mnt/datas/home/gwatts/qiime_software/rdpclassifier-2.2-release/.:/mnt/datas/home/gwatts/qiime_software/cdhit-3.1-release/.:/mnt/datas/home/gwatts/qiime_software/parsinsert-1.0.4-release/.:/mnt/datas/home/gwatts/qiime_software/muscle-3.8.31-release/.:/mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/bin:/mnt/datas/home/gwatts/qiime_software/infernal-1.0.2-release/bin:/mnt/datas/home/gwatts/qiime_software/pplacer-1.1-release/.:/mnt/datas/home/gwatts/qiime_software/fasttree-2.1.3-release/.:/mnt/datas/home/gwatts/qiime_software/vienna-1.8.4-release/.:/mnt/datas/home/gwatts/qiime_software/cytoscape-2.7.0-release/.:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/Scripts:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/bin:/mnt/datas/home/gwatts/qiime_software/drisee-1.2-release/.:/mnt/datas/home/gwatts/qiime_software/raxml-7.3.0-release/.:/mnt/datas/home/gwatts/qiime_software/cdbtools-10.11.2010-release/.:/mnt/datas/home/gwatts/qiime_software/clearcut-1.0.9-release/.:/mnt/datas/home/gwatts/qiime_software/rtax-0.982-release/.:/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin:/mnt/datas/home/gwatts/qiime_software/r-2.12.0-release/bin:/mnt/datas/home/gwatts/qiime_software/pynast-1.1-release/bin:/mnt/datas/home/gwatts/qiime_software/pprospector-1.0.1-release/bin:/mnt/datas/home/gwatts/qiime_software/biom-format-0.9.3-release/scripts/:/mnt/datas/home/gwatts/qiime_software/pyzmq-2.1.9-release/bin:/mnt/datas/home/gwatts/qiime_software/ipython-0.13-release/bin:/mnt/datas/home/gwatts/qiime_software/tornado-2.2.1-release/bin:/mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin:/mnt/datas/home/gwatts/qiime_software/mothur-1.25.0-release/.:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/ChimeraSlayer:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/NAST-iEr:/mnt/datas/home/gwatts/qiime_software/uclust-1.2.22-release/.:/mnt/datas/home/gwatts/qiime_software/rdpclassifier-2.2-release/.:/mnt/datas/home/gwatts/qiime_software/cdhit-3.1-release/.:/mnt/datas/home/gwatts/qiime_software/parsinsert-1.0.4-release/.:/mnt/datas/home/gwatts/qiime_software/muscle-3.8.31-release/.:/mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/bin:/mnt/datas/home/gwatts/qiime_software/infernal-1.0.2-release/bin:/mnt/datas/home/gwatts/qiime_software/pplacer-1.1-release/.:/mnt/datas/home/gwatts/qiime_software/fasttree-2.1.3-release/.:/mnt/datas/home/gwatts/qiime_software/vienna-1.8.4-release/.:/mnt/datas/home/gwatts/qiime_software/cytoscape-2.7.0-release/.:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/Scripts:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/bin:/mnt/datas/home/gwatts/qiime_software/drisee-1.2-release/.:/mnt/datas/home/gwatts/qiime_software/raxml-7.3.0-release/.:/mnt/datas/home/gwatts/qiime_software/cdbtools-10.11.2010-release/.:/mnt/datas/home/gwatts/qiime_software/clearcut-1.0.9-release/.:/mnt/datas/home/gwatts/qiime_software/rtax-0.982-release/.:/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/scripts/:/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/bin:/mnt/datas/home/gwatts/qiime_software/r-2.12.0-release/bin:/mnt/datas/home/gwatts/qiime_software/pynast-1.1-release/bin:/mnt/datas/home/gwatts/qiime_software/pprospector-1.0.1-release/bin:/mnt/datas/home/gwatts/qiime_software/biom-format-0.9.3-release/scripts/:/mnt/datas/home/gwatts/qiime_software/pyzmq-2.1.9-release/bin:/mnt/datas/home/gwatts/qiime_software/ipython-0.13-release/bin:/mnt/datas/home/gwatts/qiime_software/tornado-2.2.1-release/bin:/mnt/datas/home/gwatts/qiime_software/python-2.7.1-release/bin:/mnt/datas/home/gwatts/qiime_software/mothur-1.25.0-release/.:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/ChimeraSlayer:/mnt/datas/home/gwatts/qiime_software/chimeraslayer-4.29.2010-release/NAST-iEr:/mnt/datas/home/gwatts/qiime_software/uclust-1.2.22-release/.:/mnt/datas/home/gwatts/qiime_software/rdpclassifier-2.2-release/.:/mnt/datas/home/gwatts/qiime_software/cdhit-3.1-release/.:/mnt/datas/home/gwatts/qiime_software/parsinsert-1.0.4-release/.:/mnt/datas/home/gwatts/qiime_software/muscle-3.8.31-release/.:/mnt/datas/home/gwatts/qiime_software/blast-2.2.22-release/bin:/mnt/datas/home/gwatts/qiime_software/infernal-1.0.2-release/bin:/mnt/datas/home/gwatts/qiime_software/pplacer-1.1-release/.:/mnt/datas/home/gwatts/qiime_software/fasttree-2.1.3-release/.:/mnt/datas/home/gwatts/qiime_software/vienna-1.8.4-release/.:/mnt/datas/home/gwatts/qiime_software/cytoscape-2.7.0-release/.:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/Scripts:/mnt/datas/home/gwatts/qiime_software/ampliconnoise-1.25-release/bin:/mnt/datas/home/gwatts/qiime_software/drisee-1.2-release/.:/mnt/datas/home/gwatts/qiime_software/raxml-7.3.0-release/.:/mnt/datas/home/gwatts/qiime_software/cdbtools-10.11.2010-release/.:/mnt/datas/home/gwatts/qiime_software/clearcut-1.0.9-release/.:/mnt/datas/home/gwatts/qiime_software/rtax-0.982-release/.:/mnt/datas/home/gwatts/qiime_software/qiime-1.5.0-release/scripts/:/mnt/datas/home/gwatts/src/Qiime/scripts/:/mnt/datas/home/gwatts/src/biom-format/scripts/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gamesgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/tests/test_pycogent_backports$
--
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$ lsadd_qiime_labels.py count_seqs.py make_distance_boxplots.py parallel_assign_taxonomy_rdp.py single_rarefaction.pyadd_taxa.py denoiser_preprocess.py make_distance_comparison_plots.py parallel_beta_diversity.py sort_otu_table.pyadjust_seq_orientation.py denoiser.py make_distance_histograms.py parallel_blast.py split_fasta_on_sample_ids.pyalign_seqs.py denoiser_worker.py make_fastq.py parallel_identify_chimeric_seqs.py split_libraries_fastq.pyalpha_diversity.py denoise_wrapper.py make_library_id_lists.py parallel_multiple_rarefactions.py split_libraries.pyalpha_rarefaction.py dissimilarity_mtx_stats.py make_otu_heatmap_html.py parallel_pick_otus_blast.py split_otu_table_by_taxonomy.pyampliconnoise.py distance_matrix_from_mapping.py make_otu_heatmap.py parallel_pick_otus_uclust_ref.py split_otu_table.pyassign_taxonomy.py ec2Clean make_otu_network.py per_library_stats.py start_parallel_jobs.pybeta_diversity.py ec2Dispatch make_otu_table.py pick_otus.py start_parallel_jobs_sc.pybeta_diversity_through_plots.py exclude_seqs_by_blast.py make_per_library_sff.py pick_otus_through_otu_table.py start_parallel_jobs_torque.pybeta_significance.py extract_seqs_by_sample_id.py make_phylogeny.py pick_reference_otus_through_otu_table.py submit_to_mgrast.pyblast_wrapper.py filter_alignment.py make_prefs_file.py pick_rep_set.py subsample_fasta.pycategorized_dist_scatterplot.py filter_distance_matrix.py make_qiime_py_file.py pick_subsampled_reference_otus_through_otu_table.py summarize_otu_by_cat.pycheck_id_map.py filter_fasta.py make_qiime_rst_file.py plot_rank_abundance_graph.py summarize_taxa.pyclean_raxml_parsimony_tree.py filter_otus_by_sample.py make_rarefaction_plots.py plot_semivariogram.py summarize_taxa_through_plots.pycluster_quality.py filter_otus_from_otu_table.py make_tep.py plot_taxa_summary.py supervised_learning.pycollate_alpha.py filter_samples_from_otu_table.py merge_mapping_files.py poller_example.py transform_coordinate_matrices.pycompare_3d_plots.py filter_tree.py merge_otu_maps.py poller.py tree_compare.pycompare_alpha_diversity.py fix_arb_fasta.py merge_otu_tables.py principal_coordinates.py trflp_file_to_otu_table.pycompare_categories.py identify_chimeric_seqs.py multiple_rarefactions_even_depth.py print_qiime_config.py trim_sff_primers.pycompare_distance_matrices.py identify_missing_files.py multiple_rarefactions.py process_iseq.py truncate_fasta_qual_files.pyconditional_uncovered_probability.py inflate_denoiser_output.py neighbor_joining.py process_qseq.py truncate_reverse_primer.pyconsensus_tree.py insert_seqs_into_tree.py nmds.py process_sff.py unweight_fasta.pyconvert_fastaqual_to_fastq.py jackknifed_beta_diversity.py otu_category_significance.py quality_scores_plot.py upgma_cluster.pyconvert_otu_table_to_unifrac_sample_mapping.py make_2d_plots.py parallel_align_seqs_pynast.py relatedness.py usearch5.2.32_i86linux32convert_unifrac_sample_mapping_to_otu_table.py make_3d_plots.py parallel_alpha_diversity.py shared_phylotypes.py validate_demultiplexed_fasta.pycore_qiime_analyses.py make_bootstrapped_tree.py parallel_assign_taxonomy_blast.py simsam.pygwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$ usearchNo command 'usearch' found, did you mean:Command 'search' from package 'sphinxsearch' (universe)Command 'rsearch' from package '389-ds-base' (universe)Command 'ausearch' from package 'auditd' (universe)usearch: command not foundgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$
gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$ mv usearch5.2.32_i86linux32 usearchgwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$ usearchUSEARCH 5.2.32(C) Copyright 2010-11 Robert C. Edgar, all rights reserved.Licensed to: redactedCommon commands===============Clustering de novo (default is global alignment):usearch -cluster seqs.sorted.fasta -uc results.uc -id 0.97 [-usersort]Specify -usersort if input is not sorted by length.Not recommended for OTU clustering. See manual.Database search (default is local alignment):usearch -query q.fasta -evalue 0.01 -blast6out results.b6-db db.fasta | -udb db.udb [-threads n] | -wdb db.wdbSearch + clustering of seqs that don't match (default is global alignment):usearch -cluster seqs.sorted.fasta -db db.fasta -id 0.97 [-uc results.uc][-seedsout seeds.fasta] [-consout cons.fasta]Create udb or wdb database index:usearch -makeudb db.fasta -output db.udbusearch -makewdb db.fasta -output db.wdbDereplication, removing identical full-length sequences (does not search reverse strand):usearch -derep_fullseq -cluster input.fasta -seedsout nr.fasta [-bithash] [-sizeout]Dereplication, removing identical sub-sequences:usearch -derep_subseq -cluster input.fasta -seedsout nr.fasta-w 32 -slots 40000003 [-sizeout]Chimera detection (UCHIME ref. db. mode):usearch -uchime q.fasta [-db db.fasta] [-chimeras ch.fasta][-nonchimeras good.fasta] [-uchimeout results.uch] [-uchimealns results.alns]Chimera detection (UCHIME de novo mode):usearch -uchime amplicons.fasta [-chimeras ch.fasta] [-nonchimeras good.fasta][-uchimeout results.uch] [-uchimealns results.alns]Input is estimated amplicons with integer abundances specified using ";size=N".Sort sequences by length:usearch -sort seqs.fasta -output seqs.sorted.fastausearch -mergesort seqs.fasta -output seqs.sorted.fasta [-split S]Use -mergesort if too big for -sort. S is partition size in Mb, default 1000.0.Sort sequences by cluster size/abundance specified by ";size=N" in label:usearch -sortsize seqs.fasta -output seqs.sorted.fasta [-minsize n]Output files============All formats are supported for clustering and searching.-uc file UCLUST format, tab-separated.-blastout file Human-readable verbose format similar to BLAST.-blast6out file Tab-separated, same as -outfmt 6 or -m8 option of NCBI BLAST.-userout file Tab-separated, fields specified by -userfields (see manual).-seedsout file FASTA file with cluster seeds, i.e. non-redundant version of input.-consout file FASTA file with consensus sequence for each cluster.-fastapairs file FASTA file with pair-wise alignments.Search termination==================-maxaccepts N Max accepted targets, 0=ignore, default 1.-maxrejects N Max rejected targets, 0=ignore, default 32.-[no]usort [Do not] test database sequences in U-sorted order. If -nousort isspecified, the entire database is searched and termination optionsare ignored. Default is -usort.Accept/reject criteria======================Criteria are combined with AND.-id FMinimum identity, as a value 0.0 to 1.0, meaning 0% to 100% identity. No default value.The -iddef option specifies definiton of identity (see manual).-evalue EMaximum E-value. Local alignments only. No default value.-query[aln]fract FMinimum fraction of the query sequence covered by alignment. Default 0.0.-target[aln]fract FMinimum fraction of the target sequence covered by alignment. Default 0.0.-idprefix n / -idsuffix nFirst (last) n letters of the query must be identical to the target. Default 0.-leftjust / -rightjustLeft (right) terminal gaps cause reject. Recommended to use -idprefix if youuse -leftjust or -idsuffix if you use -rightjust.Alignment style===============-global Default if -cluster is specified.-local Default if -query is specified.Compressed index================-slots n Size of compressed index table. Should be prime, e.g. 40000003.Should also specify -w, typical is -w 16 to 32.Misc.=====-quiet Do not write progress messages to standard error.-log filename Write log file with information about parameters and performance.-version Show program version number and exit.-help This help.See manual for more options.gwatts@futscherlab32gb:~/qiime_software/qiime-1.5.0-release/bin$
--
1 - Change to the folder which contains mothur: cd ~/qiime_software/mothur-1.25.0-release/2 - Remove the contents of the folder: rm *3 - Get the supported version of mothur: wget http://www.mothur.org/w/images/6/6d/Mothur.1.25.0.zip4 - Extract the contents of the zipped file: unzip Mothur.1.25.0.zip5 - Change to the Mothur.source folder: cd Mothur.source6 - Open the 'makefile' file with a text editor and comment the line 31 (by adding a # at the beginning) and uncomment the line 40 (by removing the # at the beginning). Save and close the file.7 - Then build mothur using the make command: make
8 - Copy the mothur and uchime executables one folder up: cp mothur ../ and cp uchime ../
Antonio
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
DEPLOYMENT SUMMARY
Packages deployed successfully:
data-lanemask, cdbtools, clearcut, data-core, ampliconnoise, drisee, cytoscape, mothur, gg_otus, fasttree, blast, parsinsert, muscle, rdpclassifier, chimeraslayer, uclust, infernal, r
Packages skipped (assumed successful):
Packages failed to deploy:
rtax, vienna, pplacer, raxml, python, numpy, pyzmq, SQLAlchemy, tornado, matplotlib, ipython, setuptools, mpi4py, MySQL-python, biom-format, pycogent, sphinx, pynast, pprospector, qiime, cdhit
ra@Serenity:~$ cd qiime_software/
ra@Serenity:~/qiime_software$ print_qiime_config.py
print_qiime_config.py: command not found
ra@Serenity:~/qiime_software$
This email has been checked for viruses by Avast antivirus software.
|
ra@Serenity:~$ sudo apt-get install build-essential python-dev python-pip
[sudo] password for ra:
Reading package lists... Done
Building dependency tree
Reading state information... Done
build-essential is already the newest version.
The following packages were automatically installed and are no longer required:
libpgm-5.1-0 libzmq1
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
libexpat1 libexpat1-dev libpython2.7 libssl-dev python-setuptools python2.7
python2.7-dev python2.7-minimal
Suggested packages:
python2.7-doc binfmt-support
The following NEW packages will be installed:
libexpat1-dev libssl-dev python-dev python-pip python-setuptools
python2.7-dev
The following packages will be upgraded:
libexpat1 libpython2.7 python2.7 python2.7-minimal
4 upgraded, 6 newly installed, 0 to remove and 260 not upgraded.
Need to get 36.0 MB/37.6 MB of archives.
After this operation, 48.0 MB of additional disk space will be used.
Do you want to continue [Y/n]?
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libexpat1 amd64 2.0.1-7.2ubuntu1.2 [131 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libpython2.7 amd64 2.7.3-0ubuntu3.8 [1,188 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main python2.7 amd64 2.7.3-0ubuntu3.8 [2,676 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main python2.7-minimal amd64 2.7.3-0ubuntu3.8 [1,743 kB]
Get:5 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libexpat1-dev amd64 2.0.1-7.2ubuntu1.2 [215 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main python2.7-dev amd64 2.7.3-0ubuntu3.8 [29.5 MB]
Get:7 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main python-dev amd64 2.7.3-0ubuntu2.2 [1,090 B]
Get:8 http://us.archive.ubuntu.com/ubuntu/ precise/main python-setuptools all 0.6.24-1ubuntu1 [441 kB]
Get:9 http://us.archive.ubuntu.com/ubuntu/ precise/universe python-pip all 1.0-1build1 [95.1 kB]
Fetched 36.0 MB in 18s (1,907 kB/s)
(Reading database ... 151841 files and directories currently installed.)
Preparing to replace libexpat1 2.0.1-7.2ubuntu1.1 (using .../libexpat1_2.0.1-7.2ubuntu1.2_amd64.deb) ...
Unpacking replacement libexpat1 ...
Preparing to replace libpython2.7 2.7.3-0ubuntu3.5 (using .../libpython2.7_2.7.3-0ubuntu3.8_amd64.deb) ...
Unpacking replacement libpython2.7 ...
Preparing to replace python2.7 2.7.3-0ubuntu3.5 (using .../python2.7_2.7.3-0ubuntu3.8_amd64.deb) ...
Unpacking replacement python2.7 ...
Preparing to replace python2.7-minimal 2.7.3-0ubuntu3.5 (using .../python2.7-minimal_2.7.3-0ubuntu3.8_amd64.deb) ...
Unpacking replacement python2.7-minimal ...
Processing triggers for man-db ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for gnome-menus ...
Setting up python2.7-minimal (2.7.3-0ubuntu3.8) ...
Selecting previously unselected package libexpat1-dev.
(Reading database ... 151841 files and directories currently installed.)
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-7.2ubuntu1.2_amd64.deb) ...
Selecting previously unselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_1.0.1-4ubuntu5.31_amd64.deb) ...
Selecting previously unselected package python2.7-dev.
Unpacking python2.7-dev (from .../python2.7-dev_2.7.3-0ubuntu3.8_amd64.deb) ...
Selecting previously unselected package python-dev.
Unpacking python-dev (from .../python-dev_2.7.3-0ubuntu2.2_amd64.deb) ...
Selecting previously unselected package python-setuptools.
Unpacking python-setuptools (from .../python-setuptools_0.6.24-1ubuntu1_all.deb) ...
Selecting previously unselected package python-pip.
Unpacking python-pip (from .../python-pip_1.0-1build1_all.deb) ...
Processing triggers for doc-base ...
Processing 1 added doc-base file...
Processing triggers for man-db ...
Setting up libexpat1 (2.0.1-7.2ubuntu1.2) ...
Setting up python2.7 (2.7.3-0ubuntu3.8) ...
Setting up libpython2.7 (2.7.3-0ubuntu3.8) ...
Setting up libexpat1-dev (2.0.1-7.2ubuntu1.2) ...
Setting up libssl-dev (1.0.1-4ubuntu5.31) ...
Setting up python2.7-dev (2.7.3-0ubuntu3.8) ...
Setting up python-dev (2.7.3-0ubuntu2.2) ...
Setting up python-setuptools (0.6.24-1ubuntu1) ...
Setting up python-pip (1.0-1build1) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
ra@Serenity:~$ python --version
Python 2.7.3
ra@Serenity:~$ echo $PATH
/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
ra@Serenity:~$ $PYTHONPATH
ra@Serenity:~$
Best,
-Richard
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
ra@Serenity:~$ sudo easy_install -U distribute
[sudo] password for ra:
Searching for distribute
Reading http://pypi.python.org/simple/distribute/
Best match: distribute 0.7.3
Processing distribute-0.7.3.zip
Running distribute-0.7.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-3GSQ5B/distribute-0.7.3/egg-dist-tmp-sOL7ux
warning: install_lib: 'build/lib.linux-x86_64-2.7' does not exist -- no Python modules to install
Adding distribute 0.7.3 to easy-install.pth file
Installed /usr/local/lib/python2.7/dist-packages/distribute-0.7.3-py2.7.egg
Processing dependencies for distribute
Searching for setuptools>=0.7
Reading http://pypi.python.org/simple/setuptools/
Best match: setuptools 18.5
Processing setuptools-18.5.zip
Running setuptools-18.5/setup.py -q bdist_egg --dist-dir /tmp/easy_install-xea4LF/setuptools-18.5/egg-dist-tmp-ZQADMF
Adding setuptools 18.5 to easy-install.pth file
Installing easy_install script to /usr/local/bin
Installing easy_install-2.7 script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/setuptools-18.5-py2.7.egg
Finished processing dependencies for distribute
ra@Serenity:~$ print_qiime_config.py
Traceback (most recent call last):
File "/usr/local/bin/print_qiime_config.py", line 33, in <module>
raise ImportError("%s\n%s" % (e, core_dependency_missing_msg))
ImportError: No module named scipy
See the QIIME Installation Guide:
http://qiime.org/install/install.html
Going to the guide I really don't see any troubleshooting resources. I also don't get why I seem to be having such issues with the install, since this is my personal machine (so have root access) with a clean Ubuntu install shouldn't it be easy to install QIIME? Am I doing something stupid that is resulting in this not working? I greatly appreciate your help and do apologize for these issues.
Best,
-Richard
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
And you would run this to install skbio:sudo pip install scikit-bio
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- -Richard Agans, MSc PhD Candidate Dr. Paliy, Advisor Wright State University
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Qiime Forum" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qiime-forum/-fD44oQg4wE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qiime-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- -Richard Agans, MSc PhD Candidate Dr. Paliy, Advisor Wright State University