Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Cris Silva Jr committed Jan 10, 2017
1 parent 2d67fe6 commit 3f5e4c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package provides a [Go](https://golang.org/) implementation of the EDF form
+ A map from strings to strings, representing the main header in the EDF file.
+ A slice of slices of int16, each one representing one channel's recording.

They can be accessed using the `ReadFile(string)` function. The header information can be accessed through the keys given by the `GetSpecsList()` function. This query will give the raw string contained in the EDF file to be processed. The records can be accessed through their label's index. They are stored in their raw form. They can be converted using their respective convertion factor, as given by the `SetConvertionFactor(map[string]string)` function.
These structures are generated by the `ReadFile(string)` function and stored in a struct. The header information can be accessed through the keys given by the `GetSpecsList()` function. This query will give the raw string contained in the EDF file to be processed. The records can be accessed through their label's index. They are stored in their raw form. They can be converted using their respective convertion factor, as given by the `SetConvertionFactor()` method.

Getting started
---------------
Expand All @@ -25,7 +25,7 @@ import "fmt"

func main() {
edfFile := "your_file.edf"
header, records := edf.ReadFile(edfFile)
fmt.Println(edf.WriteCSV(header, records))
edfContents := edf.ReadFile(edfFile)
fmt.Println(edfContents.WriteCSV())
}
```

0 comments on commit 3f5e4c9

Please sign in to comment.