Skip to content

Commit

Permalink
Implement reading of large FCS files (credit @VascoVerissimo)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentheirendt authored and tlnagy committed Sep 4, 2019
1 parent 54cc042 commit 118d25b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/parse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ function parse_header(io)

# DATA offsets are larger than 99,999,999bytes
if offsets[3] == 0 && offsets[4] == 0
error("Reading of larger FCS not yet implemented, see issues")
text_mappings = parse_text(io, offsets[1], offsets[2])
offsets[3] = parse(Int64, text_mappings["\$BEGINDATA"])
offsets[4] = parse(Int64, text_mappings["\$ENDDATA"])
end
offsets
end
Expand Down

2 comments on commit 118d25b

@tlnagy
Copy link
Owner

@tlnagy tlnagy commented on 118d25b Sep 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/3263

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" 118d25b1134c09d6f7e6db81fd9bf1cab8703694
git push origin v0.1.1

Please sign in to comment.