Difference between revisions of "Software"
From ACL@NCU
(→MCCDAQ) |
|||
(28 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==References== | |||
Mendeley related | |||
[http://danielcoakley.com/2013/01/setting-up-mendeley-to-sync-to-android-device/ Setup up Mendeley sync on Android platform] | |||
---- | |||
==Python== | |||
===MCCDAQ=== | |||
To use the Measurement Computing 1208LS/FS DAQ, following the instructions below: | |||
#Download and install PyUniversalLibrary | |||
#Download and install mccdaq.exe | |||
#Download and unzip the example script | |||
*[[media:PyUniversalLibrary-20061020.zip|PyUniversalLibrary]] | *[[media:PyUniversalLibrary-20061020.zip|PyUniversalLibrary]] | ||
Python wrapper for Measurement Computing's DAQ library Universal Library | Python wrapper for Measurement Computing's DAQ library Universal Library | ||
<pre> | |||
1. Download and unzip the file | |||
2. In the terminal, change director to the folder, and type | |||
python setup.py install | |||
</pre> | |||
*[http://acl.ncu.edu.tw/neuroimaging/software/mccdaq.exe MCCDAQ Software] | |||
The driver software and library for the Measurement Computing usb DAQ I/O card | |||
*[[media:mcctrig.zip|example script ]] | |||
<pre> | |||
#testmccio2.py | |||
usage: run testmccio2.py <0~15> | |||
</pre> | |||
===Other Software=== | |||
*[[media:bottlenose-0.4.2.tar.gz|bottlenose package]] | |||
A Python hook into the Amazon.com Product Advertising API[https://pypi.python.org/pypi/bottlenose] | |||
*[[media:Pip-1.3.1.tar.gz | pip package]] | |||
A tool for installing and managing Python packages. | |||
*[[media:Selenium-2.32.0.tar.gz | Selenium package]] | |||
Selenium is for automating web applications for testing purposes, but is certainly not limited to just that. | |||
*[[media:IEDriverServer_x64_2.32.3.zip | IE webdriver for selenium]] | |||
*[[media:Chromedriver2_win32_0.8.zip | Chrome driver]] | |||
*[[media:Beautifulsoup4-4.2.0.tar.gz| Beautifulsoup package]] | |||
*[[media:BvSshClient-Inst.rar| Bitvise SSH Client]] | |||
*[https://www.virtualbox.org/wiki/Linux_Downloads Virtualbox] | |||
*[http://scikit-learn.org/stable/install.html SciKit-Learn machine learning module in python] | |||
---- | |||
===neuroimaging=== | |||
====Stimuli Delivery==== | |||
*[http://www.psychopy.org PsychoPy] | |||
A package for stimulus presentation. Suitable for psychophysics, neuroimaging and many other areas of psychology. | |||
*[http://www.cogsci.nl/software/opensesame openSesame] | |||
A graphical experiment builder for the social sciences (recommended by Christophe Pallier) | |||
====Data I/O==== | |||
[http://nipy.org/nibabel NiBabel] | |||
==Virtual box== | |||
*[http://askubuntu.com/questions/445284/how-to-start-a-virtualbox-machine-via-command-line-without-gui| How to start a Virtualbox machine via command line (without GUI)?] | |||
<pre> | |||
#VBoxManage startvm "VM name" --type headless | |||
#In the case of ACL_AFNI, win7 | |||
VBoxManage startvm "win7" --type headless | |||
</pre> | |||
Latest revision as of 12:04, 20 January 2016
References
Mendeley related
Setup up Mendeley sync on Android platform
Python
MCCDAQ
To use the Measurement Computing 1208LS/FS DAQ, following the instructions below:
- Download and install PyUniversalLibrary
- Download and install mccdaq.exe
- Download and unzip the example script
Python wrapper for Measurement Computing's DAQ library Universal Library
1. Download and unzip the file 2. In the terminal, change director to the folder, and type python setup.py install
The driver software and library for the Measurement Computing usb DAQ I/O card
#testmccio2.py usage: run testmccio2.py <0~15>
Other Software
A Python hook into the Amazon.com Product Advertising API[1]
A tool for installing and managing Python packages.
Selenium is for automating web applications for testing purposes, but is certainly not limited to just that.
neuroimaging
Stimuli Delivery
A package for stimulus presentation. Suitable for psychophysics, neuroimaging and many other areas of psychology.
A graphical experiment builder for the social sciences (recommended by Christophe Pallier)
Data I/O
Virtual box
#VBoxManage startvm "VM name" --type headless #In the case of ACL_AFNI, win7 VBoxManage startvm "win7" --type headless