Abstract
We created an easy-to-use device for operant licking experiments and another device that records environmental variables. Both devices use the Raspberry Pi computer to obtain data from multiple input devices (e.g., radio frequency identification tag readers, touch and motion sensors, environmental sensors) and activate output devices (e.g., LED lights, syringe pumps) as needed. Data gathered from these devices are stored locally on the computer but can be automatically transferred to a remote server via a wireless network. We tested the operant device by training rats to obtain either sucrose or water under the control of a fixed ratio, a variable ratio, or a progressive ratio reinforcement schedule. The lick data demonstrated that the device has sufficient precision and time resolution to record the fast licking behavior of rats. Data from the environment monitoring device also showed reliable measurements. By providing the source code and 3D design under an open source license, we believe these examples will stimulate innovation in behavioral studies. The source code can be found at http://github.com/chen42/openbehavior.
Keywords: Operant behavior, Behavior testing device, Open source, Single board computer, Licking response, Environment variables
Introduction
Quantitative measurement of rodent behavior is one of the cornerstones of neuroscience. Traditionally, neuroscientists have favored the approach of vastly reducing the complexity of the experimental paradigm. However, more recently, many scientists have realized that in order to better grasp the complexity of behavior, data sets capturing many more internal and environmental variables and with much higher time and spatial resolution are required (Gomez-Marin et al., 2014).
Recent generations of single-board computers are the size of a credit card and yet are as powerful as desktop computers from a few years ago. Furthermore, numerous sensors are available to be connected to these computers. These sensors can be used to monitor a wide variety of environmental variables as well as animal behaviors. Therefore, there exists an opportunity to exploit these readily available electronic and computing resources for measuring multi-dimensional behavioral data.
Here, we describe a project where a Raspberry Pi® single-board computer was used to study operant licking in rats. Operant training in animals allows them to associate a response (e.g., peck a spot with the beak, press a lever, or lick a spout) with a reward (e.g., food, water, or drugs), as well as reward-associated cues (e.g., a light). Operant conditioning is used to study a wide variety of behaviors, especially those related to the function of the reward system, such as food consumption or drug abuse. We also used a motion sensor to track the activity of the rat and a radio-frequency identification (RFID) tag to track the identity of the rat (Fig. 1). In addition, we also designed an environmental sensor set that monitors the temperature, humidity, barometric pressure, and ambient light levels.
Methods
The operant licking device
This system uses a capacitive touch sensor (MPR121; Adafruit) connected to the drinking spouts to record the licking behavior of rodents. When the number of licks on a spout meets a predetermined criteria, a syringe pump is triggered to deliver a fixed amount of solution to that spout. A visual cue (an LED) is turned on every time the solution is delivered. A motion sensor is used to record the activity of the rodent. An RFID reader is used to read the glass ID tag embedded in the animal. All the data are recorded locally on the storage media (a Secure Digital card) and are transferred to a remote server via wireless internet connection at the end of the sessions using the rsync command. All electronic devices are installed in a 3D printed frame and can be placed in a standard rat cage. The syringe pump can be placed on top of the wire grid of the cage. The design source files used for 3D printing, software, and instructions for assembly are available in our github repository (https://github.com/chen42/openbehavior) under the Creative Commons Attribution NonCommercial license (Version 3.0).
Computer
We used the Raspberry Pi (model 2B; RPi) single-board computer. The computer uses a Broadcom BCM2836 Arm v7 quad core processor (900 MHz) and has 1 GB RAM. A total of 40 pins are available on a header for user expansion, including 17 GPIO pins, an I2C connection, and a serial line. Although sufficiently powerful, the RPi 2B is missing a few key components. Therefore, we added a WiFi module (EW-7811Un; Edimax) and a real time clock (DS1307; JBtek). The clock is connected to the RPi via an I2C interface and is needed to maintain the system time when network connectivity is not available. The more recent Raspberry Pi 3 model, which includes a WiFi module, can also be used after its bluetooth interface is disabled (a script is provided in our GitHub repository). The system power is provided by a 12 V AC-DC converter (Binzet, regulated, 2 Amp). A DC-DC voltage step down module (LM2596; Texas Instruments) is used to provide 5 V power to the RPi. A diagram of the peripheral components connected to the RPi is shown in Fig. 2.
Input devices
The key component of the system is the MPR121 capacitive touch sensor (Adafruit), which communicates with the RPi via the I2C protocol. We used only two of the 12 channels of this sensor. Each channel was connected to one drinking spout to monitor the licking behavior. A passive infrared motion detector (HC-SR501; Adafruit) was used to monitor the activity of the animal. Located within this detector are two infrared sensors. The differences in infrared signals between these two dectors are used as a measure of activity. We have observed that the activity of the rat in either end of a standard rat box measuring 17 in (L) × 8 in (W) reliably triggered the sensor (based on the LED motion indicator), and no signal was generated when the rat was resting . We also connected a RFID reader (RDM6300; Itead) to the RPi. This reader can detect low frequency (125 kHz) glass RFID tags with EM4100 standard (HeHeng-RFID via AliExpress.com, EM4100). These glass tags can be implanted under the skin of the rats to provide a unique identification code for each rat. Lastly, we installed two push buttons to provide bidirectional manual control of the step motor. This allows the position of the motor to be adjusted when loading the syringe.
Output devices
The main output device is a syringe pump modified from the design provided by Wijnen et al. (2014). A step motor controller (model A4988, with a heat sink; Elegoo) is used to advance a step motor (Pololu, NEMA 11). The motor is installed in a 3D printed frame, which also has a holder for a 10 ml syringe. The motor advances the syringe to deliver one drop (calibrated to be 64.5 ± 5.75 µl, mean and standard deviation) of solution to the tip of the spout (via a polyethylene tubing) each time it is activated. Three LEDs are connected to the device. One serves as a cue light (Fulight® clear, 5 mm in diameter, 6,000 mcd at 20 mA, 60° viewing angel) and is installed on top of the active spout. The other two LEDs are indicators of licking or locomotor activity. Lastly, an LCD (16 × 2 characters) is connected to the GPIO pins. The LCD provides information about the system before, during, and after the test sessions.
Software and reinforcement schedules
Our software is written in the Python programming language and runs on the Raspbian Linux operating system (Jessie, released on 05-27-2016). Libraries for the touch sensor (Adafruit Python MPR 121) and the LCD (Adafruit Python CharLCD) were provided by the manufacture. We adjusted the default thresholds of the MPR 121 library to touch = 36 and release = 18 (in the self.set_thresholds function) before system wide installation. This adjustment was necessary to eliminate the false touch signal when the sensor was connected to the spouts. We observed 0 count of touching event when the spout was left untouched for three hours after this adjustment.
The main program is automatically launched at system start up. Once the program is loaded, two push buttons can be used to adjust the position of pump for loading the syringe. The system then awaits input from the RFID scanner. The session timer starts when the technician scans the glass RFID tag embedded in the rat. The touch sensor records the timing of licking from two spouts, designated as the active and the inactive spout, respectively. We implemented three reinforcement schedules. When the fixed ratio (FR) schedule is used, a reward (i.e., fluid delivered to the active spout) is delivered when a predetermined number of licks (e.g., 10) is recorded. A variable ratio (VR) schedule delivers the reward after a randomly chosen number of licks, with a predetermined average (e.g., 10). When controlled by a progressive ratio schedule, the number of licks required to obtain each subsequent reward is increased until the animal fails to obtain a reward within a given time period. A time out period, when the number of licks is recorded but has no programmed consequence, is enforced after each reward. Because there is no conventional input device present, such as a keyboard or a pointing device, we use a few specific RFIDs to switch between these reinforcement schedules (i.e., scanning one particular RFID tag will load the progressive ratio schedule).
A cue light located above the active spout (characteristics described above) is turned on for a fixed time (e.g., 5 s) after each reward. The number of licks on the inactive spout is recorded throughout the session but has no programmed consequence. Data from the motion sensor is recorded using a separate Python program. In addition to the timing and type of each event (i.e., lick, movement), the start and finish times are recorded in the data files. The LCD is used throughout the session to provide system status and real time data. The Linux program rsync is used to automatically transfer data files to a remote server upon the completion of each session.
The environmental variable monitoring device
The standalone environmental variable monitoring device also uses a RPi. Four sensors are connected to the RPi via the I2C communication protocol. These are the TSL2561 for ambient light, HTU21D-F for humidity, and BMP085 for barometric pressure. Both the HTU21D-F and the BMP085 contain a temperature sensor. We recorded the average reading from these two sensors. The Python libraries provided by Adafruit for these specific products are used to obtain data. The logging program was excecuted once every 10 min as a cron job. The Linux rsync program is used to transfer the collected data to a remote server automatically. The Python programs are available in our github repository listed above.
Procedure for implanting RFID
RFID tags and matching insertion needles (HeHeng-RFID, via http://AliExpress.com) were sterilized by soaking in Cidex Plus (Advanced sterilization products) overnight, followed by washing in 70% ethanol and sterile saline. The injection procedure was similar to that of a subcuetaneous injection. Briefly, the skin around the nape of the neck was wiped with alcohol before a rat was restrained in a plastic wrap. The needle containing a RFID was then rapidly inserted under the skin and the RFID injected.
Operant licking for sucrose or water
Ten female rats purchased from Harlan Laboratory were used. Animals were housed in a reverse light-cycled room (lights off at 9:00 AM and on at 9:00 PM). Food and water were provided ad libitum. These rats were tested under a FR10, a VR10, and a PR schedule to obtain a 10% sucrose solution (n = 5) or water (n = 5). The FR10 and VR10 sessions lasted 1 h. The PR session ended 10 min after the last lick on the active spout. These tests were run in a dark room with all lights turned off. All procedures were conducted in accordance with the NIH Guidelines Concerning the Care and Use of Laboratory Animals and were approved by the Institutional Animal Care and Use Committee of the University of Tennessee Health Science Center.
Statistical analysis
Data are presented as mean ± standard error. Student’s t-tests were used to analyze the difference between the licks on the active vs. the inactive spouts. Statistical significance was assigned for p < 0.05 . The R statistical analysis language was used for data analysis and plotting.
Results
Operant licking response for sucrose
We tested two groups of rats for operant licking in five devices assembled as describe above. Rats obtained either a sucrose solution (10%, n = 5) or water (n = 5). Each rat was tested using the FR10, VR10, and PR reinforcement schedules. The number of licks and rewards for each data set are plotted in Fig. 3. Rats licked 4,902 ± 1, 076, 4,525 ± 1, 072, and 1,081 ± 227 times on the active spouts when tested on the FR10, VR10, and PR reinforcement schedules, and received 89 ± 12, 101 ± 11, 14 ± 1 drops (60 µl) of sucrose solution, respectively. In contrast, rats licked 141 ± 38, 241 ± 84, and 115 ± 28 times on the active spouts when tested on the FR10, VR10, and PR reinforcement schedules, and received 8 ± 2, 9 ± 2, 5 ± 1 drops of water, respectively. The number of licks on the active spout was significantly greater than those on the inactive spouts when sucrose or water was provided (Fig. 3). These results are very similar to those reported by Sclafani & Ackroff (2003), indicating that the devices provided reliable data.
The time course of licks on the two spouts as well as rewards earned by the rat with the highest number of licks in each of the six test conditions was plotted in Fig. 4. Rats licked almost continuously on the active spouts for the entire 60 min testing period for sucrose when the FR10 or the VR10 schedule was used. The rate of licking was much lower when the PR schedule was used. Although they sampled the inactive spout initially, licking activity became exclusive for the active spout near the end of each of the sessions. In contrast, when water was provided, the licks were much sparser, with large time lags between receiving rewards. Thus, these data better illustrate the number of licks between rewards. The number of licks was not even when the FR10 schedule was used. This is because rats continue to lick on the active spout during the 20 s time out period after the reward was delivered.
The microstructure of licks is informative for the reward value of the taste substance (Davis & Smith, 1992). As previously reported (Davis & Smith, 1992; Wang, Wang & Chen, 2014), we define as a cluster those licks that occurred within 0.5 s of each other. Clusters with fewer than two licks were excluded from the analysis. The size of a lick cluster is the number of licks it contains. Inter-licking interval is defined as the time between each lick within each cluster. The distributions of inter-lick intervals and the size of lick clusters for sucrose or water under the FR10 schedule are shown in Fig. 5. The average size of lick clusters on the active spout for sucrose was 35.7 ± 6.4 for sucrose and 7.2 ± 1.1 for water (p < 0.05). In contrast, the average size of lick cluster on the inactive spout was 8.6 ± 4.0 for sucrose and 5.9 ± 0.4 for water (p > 0.05).
The inter-lick interval on the active spout was 0.15 ± 0.002 s for sucrose and 0.22 ± 0.01 s for water (p < 0.01). The inter-lick interval on the inactive spout was 0.20 ± 0.01 s for sucrose and 0.26 ± 0.02 for water (p < 0.01).
The activity data collected from the FR10 and VR10 session are presented in Fig. 6. Data from the PR session was not shown because each rat had a different session length. The movement was combined into 1 min bins. The average number within each bin from all the rats were shown. These data showed that although there was a general trend of reducing activity, rats remained active during the entire 1 h session when sucrose was provided. However, the rats were less active when water was provided.
Environmental data
We tested the reliability of the reading by placing two devices assembled several month apart side by side. Analysing data collected over 200 consequtive time points (10 min interval) showed that the differences between the two devices on temperature, humidity, barometric pressure, and light levels were 0.29 ± 0.35 °C, 1.6 ± 7.7 %, 0.98 ± 0.43 kPa, and 57.6 ± 94.3 Lux, respectively (mean ± standard deviation). The temperature, humidity and barometric pressure readings were in agreement with a comercial instrument. The Lux reading was very sensitive to the angle of the sensor. Because we were using the Lux reading to monitor light cycle (i.e., on/off events), we did not further calibrate this sensor.
The data gathered by the environment sensor set from an animal housing room for the first week of July 2016 is plotted in Fig. 7. The data show that the animal facility was under tight climate control. However, after adjusting the airflow on July 5th, the temperature was reduced by ∼1 °C and the humidity was increased by 3%. The air pressure also showed fluctuation. The level of light recorded indicates that the light of the room was reverse cycled (On at 9 PM and off at 9 AM, and that technicians occasionally entered the room during the day.
Discussion
We designed two devices using the Raspberry Pi computers. The operant licking device cost less than $200 and could be assembled in 3–4 h. We tested the operant licking device by training rats to obtain sucrose or water using several reinforcement schedules in regular housing cages. We also designed a device that can continuously record four environmental variables, including temperature, humidity, air pressure, and light levels. This device cost less than $100 and could be assembled in 1–2 h.
Many behavioral researchers have discovered the relevance of these small computers for data collection projects and taken full advantage of their usefulness. For example, Escobar & Pérez-Herrera (2015) described the use of an Arduino microcontroller in conjunction with a laptop computer to conduct operant conditioning experiments (Thingiverse IDs: 1226076 and 1269418). Pineño (2014) reported an operant conditioning device using an iPod Touch and an Arduino microcontroller. The Kravitz group published two Arduino-based devices. The FED is a home cage-compatible device for measuring feeding behavior in mice (Nguyen et al., 2016), and the ROBucket is a flexible operant chamber (Devarakonda, Nguyen & Kravitz, 2016). Most interestingly, Rizzi, Lodge & Tan (2016) designed an Arduino-based system that triggered the delivery of optogenetic stimulation from nose pokes of mice.
We chose to use single-board computers over microcontrollers because they have faster processors, easy access to permanent data storage, network access, and run on modern operating systems while still being very affordable, although there are situations where microcontrollers have advantages. There are numerous single-board computers available, we chose the Raspberry Pi ($35) because it has a large user community and is the most likely to have sustained development, as demonstrated by the recent release of Raspberry 3, which includes a built-in WiFi module.
Our devices demonstrated the utility of RPi in studying rodent behaviors. The small size of the RPi allows the entire device to fit in a regular rat housing cage. Combined with low cost, this has the potential for breaking down two of the main barriers for many academic labs to conduct operant behavioral tests: the lack of funding for expensive equipment and limited space in the vivarium. Another advantage of shrinking the size of behavioral test equipment is that it allows rodent behavior to be recorded continuously in the home cage. Thus, the diurnal rhythm of the behavior can be recorded without incurring large costs for dedicated equipment.
RFID tags provide unique identification codes for animals. The low frequency (125 kHz) glass tags (∼$1 each) usually encode a twelve character hexdecimal number and therefore can uniquely identify 2.8 × 1014 animals for a research project. Because of their small size, they can be inserted into a syringe needle and be injected under the skin of rodents without general anesthesia. Once embedded, they provide a permanent ID for each individual. These tags can even be placed with tissue samples once the animals are euthanized.
Integrating an RFID reader with the behavioral device allows each test subject to be unequivocally identified in the data files. Further, the device can be programmed to start the test session when an RFID is detected. This simplifies the workflow and reduces potential noise in the data. In addition, we also use the RFID system to select the reinforcement schedule. While the program defaults to use the variable ratio 10 schedule, we encoded the value of several RFID tags in the program so that when these particular tags are detected, a fixed ratio or a progressive ratio schedules will be used. Although this is very simple to use and can be readily expanded to include other options, one shortcoming is that we need to use those particular tags to start the program. We remediated this by programming two alternative tags for each reinforcement schedule.
Another potential advantage of the RFID tags is that they allow for the possibility of multiple animals to be tested in a group housing setup. However, in our tests, we have found that the detection of RFID tags using the RDM6300 reader is not sufficiently reliable. It sometimes misses the tag even when the antenna is in close proximity to the tag (maximum sensitivity is found when the tag approaches the antenna in a perpendicular direction and at the edge of the antenna loop. One of the main future directions of this project is to improve the sensitivity of the RFID detection system, possibly by using a different RFID reader, such as those used by Howerton, Garner & Mench (2012).
There are several commonly used methods for recording the licking behavior of rodents. The contact lickometer supplies a small voltage between the wire floor and the spout. It then detects the small current passing through the rat when it licks the spout. This requires a metal floor to be used. An alternative method is to set up an infrared beam to monitor the tip of the spout. The tongue blocks the light beam and allows the licks to be detected. This method requires the position of the light and the spout to be carefully calibrated.
We used a capacitive touch sensor to monitor the licking events. Our analysis of the lick microstructure for sucrose was in agreement with those reported in the literature (Davies et al., 2015), indicating that this device has sufficient time resolution and sensitivity to accurately measure the rapid licking behavior of rats. One caveat is that these touch sensors are very sensitive. They can sometimes be triggered by environmental interference, especially when connected to a large piece of metal, such as a rodent drinking spout. Although we found a sensitivity setting (see ‘Methods’) that was sufficient to avoid the noise while still reliably recorded the licking events, this setting might need to be validated for each type of spouts.
One of the main motivations in developing these devices is to study operant alcohol self-administration in rats. Rats have many advantages for behavioral neuroscience research (Parker et al., 2013). However, many of the widely used rat strains do not readily consume alcohol. We hope the device described here will be helpful in establishing a robust model of oral alcohol self-administration. Operant licking provides potential advantages over lever pressing behavior, such as its high response-reinforcer contingency. Further, the lick microstructure analysis can provide insights into the subjective value of the reward (Davis & Smith, 1992). The combination of low cost and small footprint of this device also provides a unique opportunity to perform relatively large-scale studies on the diurnal rhythm of alcohol consumption.
Lastly, the environmental monitoring device allows the collection of several variables that could potentially influence alcohol intake in the long run and improve experimental reproducibility. Although commonly ignored, more and more recent data show that environmental factors such as temperature (Chesler et al., 2002), humidity (Chesler et al., 2002), barometric pressure (Mizoguchi et al., 2011), noise (Okada et al., 1988; Prior, 2002), illumination (Valdar et al., 2006), and vibration (Okada et al., 1988) have a great impact on animal behavior. Our low cost system can capture large amounts of environmental data, which can improve understanding of the complex effects of the environment on behavior and increase research reproducibility (Collins & Tabak, 2014).
There are several potential disadvantages of our approach comparing to existing commercial products. For example, manufacturing these devices may require skills that are not commonly present in a behavioral neuroscience lab. Although 3D printers have become very affordable, printing high-quality parts is still a trial and error process. High precision is especially important for parts used in the syringe pump. In addition to adjusting the printing condition (e.g., temperature and/or resolution), the design might also need to be modified after the initial printing runs. Because the device is placed in the cage, it has the potential to be chewed by the rats. However, in our daily testing of six devices over three months, this was very rare. Should that become a concern, it is possible to replace just the bottom part of the printed frame, which is most likely to be damaged by rats. Installing the software requires some knowledge of the Linux operating system, especially when a secured WiFi network is used for data transfer (example configuration files for the eduroam network widely used across higher educational institutes, as well as for transferring data are provided in our GitHub repository). Alternatively, the storage media can be taken out via a dedicated slot for copying the data manually. Lastly, because there is no commercial support, trouble shooting may be difficult until there is a community of users. In general, making sure the connections are correct and testing the various components individually (with a keyboard and a monitor connected) would reveal the causes of the problems.
In summary, we developed two open source devices that can be used to collect multi-dimensional data for behavioral studies. By providing the design and software under an open source license, we hope they will stimulate the wider adoption of single-board computers and innovation in behavioral measurements.
Supplemental Information
Acknowledgments
The authors thank Ms. Pawandeep Kaur for her excellent technical assistance in collecting the behavioral data.
Funding Statement
This work was supported by NIH DA-037844 (HC) and the Faculty Start Up Fund by the University of Tennessee Health Science Center. The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.
Additional Information and Declarations
Competing Interests
The authors declare there are no competing interests.
Author Contributions
Matthew Longley performed the experiments, wrote the paper, prepared figures and/or tables, reviewed drafts of the paper.
Ethan L. Willis performed the experiments, wrote the paper, reviewed drafts of the paper.
Cindy X. Tay performed the experiments, analyzed the data, wrote the paper, reviewed drafts of the paper.
Hao Chen conceived and designed the experiments, analyzed the data, contributed reagents/materials/analysis tools, wrote the paper, prepared figures and/or tables, reviewed drafts of the paper.
Animal Ethics
The following information was supplied relating to ethical approvals (i.e., approving body and any reference numbers):
University of Tennessee Health Science Center Institutional Animal Care and Use Committee, Protocol ID: 6249.
Data Availability
The following information was supplied regarding data availability:
Openbehavior: https://github.com/chen42/openbehavior.
References
- Chesler et al. (2002).Chesler EJ, Wilson SG, Lariviere WR, Rodriguez-Zas SL, Mogil JS. Identification and ranking of genetic and laboratory environment factors influencing a behavioral trait, thermal nociception, via computational analysis of a large data archive. Neuroscience and Biobehavioral Reviews. 2002;26(8):907–923. doi: 10.1016/S0149-7634(02)00103-3. [DOI] [PubMed] [Google Scholar]
- Collins & Tabak (2014).Collins FS, Tabak LA. Policy: NIH plans to enhance reproducibility. Nature. 2014;505(7485):612–613. doi: 10.1038/505612a. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Davies et al. (2015).Davies JR, Humby T, Dwyer DM, Garfield AS, Furby H, Wilkinson LS, Wells T, Isles AR. Calorie seeking, but not hedonic response, contributes to hyperphagia in a mouse model for Prader-Willi syndrome. European Journal of Neuroscience. 2015;42(4):2105–2113. doi: 10.1111/ejn.12972. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Davis & Smith (1992).Davis JD, Smith GP. Analysis of the microstructure of the rhythmic tongue movements of rats ingesting maltose and sucrose solutions. Behavioral Neuroscience. 1992;106(1):217–228. doi: 10.1037/0735-7044.106.1.217. [DOI] [PubMed] [Google Scholar]
- Devarakonda, Nguyen & Kravitz (2016).Devarakonda K, Nguyen KP, Kravitz AV. ROBucket: a low cost operant chamber based on the Arduino microcontroller. Behavior Research Methods. 2016;48(2):503–509. doi: 10.3758/s13428-015-0603-2. [DOI] [PubMed] [Google Scholar]
- Escobar & Pérez-Herrera (2015).Escobar R, Pérez-Herrera CA. Low-cost USB interface for operant research using Arduino and Visual Basic. Journal of the Experimental Analysis of Behavior. 2015;103(2):427–435. doi: 10.1002/jeab.135. [DOI] [PubMed] [Google Scholar]
- Gomez-Marin et al. (2014).Gomez-Marin A, Paton JJ, Kampff AR, Costa RM, Mainen ZF. Big behavioral data: psychology, ethology and the foundations of neuroscience. Nature Neuroscience. 2014;17(11):1455–1462. doi: 10.1038/nn.3812. [DOI] [PubMed] [Google Scholar]
- Howerton, Garner & Mench (2012).Howerton CL, Garner JP, Mench JA. A system utilizing radio frequency identification (RFID) technology to monitor individual rodent behavior in complex social settings. Journal of Neuroscience Methods. 2012;209(1):74–78. doi: 10.1016/j.jneumeth.2012.06.001. [DOI] [PubMed] [Google Scholar]
- Mizoguchi et al. (2011).Mizoguchi H, Fukaya K, Mori R, Itoh M, Funakubo M, Sato J. Lowering barometric pressure aggravates depression-like behavior in rats. Behavioural Brain Research. 2011;218(1):190–193. doi: 10.1016/j.bbr.2010.11.057. [DOI] [PubMed] [Google Scholar]
- Nguyen et al. (2016).Nguyen KP, O’Neal TJ, Bolonduro OA, White E, Kravitz AV. Feeding Experimentation Device (FED): a flexible open-source device for measuring feeding behavior. Journal of Neuroscience Methods. 2016;267:108–114. doi: 10.1016/j.jneumeth.2016.04.003. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Okada et al. (1988).Okada A, Nakamura H, Nakamura H, Nohara S. Combined effect of whole-body vibration and noise on the dopamine turnover in the rat brain. Journal of the Acoustical Society of America. 1988;83(S1):S22–S22. doi: 10.1121/1.2025257. [DOI] [Google Scholar]
- Parker et al. (2013).Parker CC, Chen H, Flagel SB, Geurts AM, Richards JB, Robinson TE, Solberg Woods LC, Palmer AA. Rats are the smart choice: rationale for a renewed focus on rats in behavioral genetics. Neuropharmacology. 2013;76 Pt B:250–258. doi: 10.1016/j.neuropharm.2013.05.047. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Pineño (2014).Pineño O. ArduiPod box: a low-cost and open-source skinner box using an iPod touch and an Arduino microcontroller. Behavior Research Methods. 2014;46(1):196–205. doi: 10.3758/s13428-013-0367-5. [DOI] [PubMed] [Google Scholar]
- Prior (2002).Prior H. Effects of predictable and unpredictable intermittent noise on spatial learning in rats. Behavioural Brain Research. 2002;133(2):117–124. doi: 10.1016/S0166-4328(01)00466-1. [DOI] [PubMed] [Google Scholar]
- Rizzi, Lodge & Tan (2016).Rizzi G, Lodge ME, Tan KR. Design and construction of a low-cost nose poke system for rodents. Methods. 2016;3:326–332. doi: 10.1016/j.mex.2016.04.002. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Sclafani & Ackroff (2003).Sclafani A, Ackroff K. Reinforcement value of sucrose measured by progressive ratio operant licking in the rat. Physiology and Behavior. 2003;79(4–5):663–670. doi: 10.1016/S0031-9384(03)00143-4. [DOI] [PubMed] [Google Scholar]
- Valdar et al. (2006).Valdar W, Solberg LC, Gauguier D, Cookson WO, Rawlins JNP, Mott R, Flint J. Genetic and environmental effects on complex traits in mice. Genetics. 2006;174(2):959–984. doi: 10.1534/genetics.106.060004. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wang, Wang & Chen (2014).Wang T, Wang B, Chen H. Menthol facilitates the intravenous self-administration of nicotine in rats. Frontiers in Behavioral Neuroscience. 2014;8 doi: 10.3389/fnbeh.2014.00437. Article 437. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wijnen et al. (2014).Wijnen B, Hunt EJ, Anzalone GC, Pearce JM. Open-source syringe pump library. PLOS ONE. 2014;9(9):e107216. doi: 10.1371/journal.pone.0107216. [DOI] [PMC free article] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Supplementary Materials
Data Availability Statement
The following information was supplied regarding data availability:
Openbehavior: https://github.com/chen42/openbehavior.