How do I decompress .bgz files?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












Is there any software that will decompress a file named nnnnn.tsv.bgz on a PC running Windows 10?
The usual R commands will not do it.










share|improve this question







New contributor




Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    1
    down vote

    favorite












    Is there any software that will decompress a file named nnnnn.tsv.bgz on a PC running Windows 10?
    The usual R commands will not do it.










    share|improve this question







    New contributor




    Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      Is there any software that will decompress a file named nnnnn.tsv.bgz on a PC running Windows 10?
      The usual R commands will not do it.










      share|improve this question







      New contributor




      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      Is there any software that will decompress a file named nnnnn.tsv.bgz on a PC running Windows 10?
      The usual R commands will not do it.







      gunzip unzip






      share|improve this question







      New contributor




      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 3 hours ago









      Maringo7

      64




      64




      New contributor




      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Maringo7 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          1
          down vote













          That file extension sounds suspicious. What i would do is check the first hex values of the file in a hex viewer to see really what kind of file it was. How is it encoded or is it an archive, who knows. But, the first hex values in a file will usually not lie and say what they are--these are the "magic bytes"



          First is a well-used resource showing common file types and their hex values.



          gary kessler list



          Lastly is an easy place to just upload it and have it checked



          file type checker






          share|improve this answer




















          • Or, rather, just use the file command which will do this for you.
            – Bob
            3 hours ago










          • True, but not available on a PC running windows 10 as OP mentioned.
            – manbearpig
            3 hours ago










          • What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
            – Xen2050
            2 hours ago











          • Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
            – manbearpig
            2 hours ago











          • Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
            – Bob
            2 hours ago


















          up vote
          1
          down vote













          Try the freeware 7-zip:
          https://www.7-zip.org/



          It can decompress archive of many known file types.






          share|improve this answer








          New contributor




          Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
























            up vote
            1
            down vote













            It looks like it's a "block gzipped" file and should be viewable with anything that knows gzip files (tar, gzip, etc). Winzip/7zip might just need it's extension changed to .gz (windows is funny that way).



            Or Install the Windows Subsystem for Linux and use linux tools, like tar, gzip, file, bgzip (provided in the tabix package in Debian & probably others)...



            • More info here:
              https://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html


            Or it could be a Blood Frontier game Map File, so use the game.






            share|improve this answer




















              Your Answer







              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "3"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              convertImagesToLinks: true,
              noModals: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );






              Maringo7 is a new contributor. Be nice, and check out our Code of Conduct.









               

              draft saved


              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1359036%2fhow-do-i-decompress-bgz-files%23new-answer', 'question_page');

              );

              Post as a guest






























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              1
              down vote













              That file extension sounds suspicious. What i would do is check the first hex values of the file in a hex viewer to see really what kind of file it was. How is it encoded or is it an archive, who knows. But, the first hex values in a file will usually not lie and say what they are--these are the "magic bytes"



              First is a well-used resource showing common file types and their hex values.



              gary kessler list



              Lastly is an easy place to just upload it and have it checked



              file type checker






              share|improve this answer




















              • Or, rather, just use the file command which will do this for you.
                – Bob
                3 hours ago










              • True, but not available on a PC running windows 10 as OP mentioned.
                – manbearpig
                3 hours ago










              • What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
                – Xen2050
                2 hours ago











              • Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
                – manbearpig
                2 hours ago











              • Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
                – Bob
                2 hours ago















              up vote
              1
              down vote













              That file extension sounds suspicious. What i would do is check the first hex values of the file in a hex viewer to see really what kind of file it was. How is it encoded or is it an archive, who knows. But, the first hex values in a file will usually not lie and say what they are--these are the "magic bytes"



              First is a well-used resource showing common file types and their hex values.



              gary kessler list



              Lastly is an easy place to just upload it and have it checked



              file type checker






              share|improve this answer




















              • Or, rather, just use the file command which will do this for you.
                – Bob
                3 hours ago










              • True, but not available on a PC running windows 10 as OP mentioned.
                – manbearpig
                3 hours ago










              • What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
                – Xen2050
                2 hours ago











              • Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
                – manbearpig
                2 hours ago











              • Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
                – Bob
                2 hours ago













              up vote
              1
              down vote










              up vote
              1
              down vote









              That file extension sounds suspicious. What i would do is check the first hex values of the file in a hex viewer to see really what kind of file it was. How is it encoded or is it an archive, who knows. But, the first hex values in a file will usually not lie and say what they are--these are the "magic bytes"



              First is a well-used resource showing common file types and their hex values.



              gary kessler list



              Lastly is an easy place to just upload it and have it checked



              file type checker






              share|improve this answer












              That file extension sounds suspicious. What i would do is check the first hex values of the file in a hex viewer to see really what kind of file it was. How is it encoded or is it an archive, who knows. But, the first hex values in a file will usually not lie and say what they are--these are the "magic bytes"



              First is a well-used resource showing common file types and their hex values.



              gary kessler list



              Lastly is an easy place to just upload it and have it checked



              file type checker







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered 3 hours ago









              manbearpig

              512




              512











              • Or, rather, just use the file command which will do this for you.
                – Bob
                3 hours ago










              • True, but not available on a PC running windows 10 as OP mentioned.
                – manbearpig
                3 hours ago










              • What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
                – Xen2050
                2 hours ago











              • Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
                – manbearpig
                2 hours ago











              • Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
                – Bob
                2 hours ago

















              • Or, rather, just use the file command which will do this for you.
                – Bob
                3 hours ago










              • True, but not available on a PC running windows 10 as OP mentioned.
                – manbearpig
                3 hours ago










              • What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
                – Xen2050
                2 hours ago











              • Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
                – manbearpig
                2 hours ago











              • Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
                – Bob
                2 hours ago
















              Or, rather, just use the file command which will do this for you.
              – Bob
              3 hours ago




              Or, rather, just use the file command which will do this for you.
              – Bob
              3 hours ago












              True, but not available on a PC running windows 10 as OP mentioned.
              – manbearpig
              3 hours ago




              True, but not available on a PC running windows 10 as OP mentioned.
              – manbearpig
              3 hours ago












              What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
              – Xen2050
              2 hours ago





              What about the linux/ubuntu subsystem for windows? It should even have gzip & tar, might have no problem with it
              – Xen2050
              2 hours ago













              Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
              – manbearpig
              2 hours ago





              Fair points, but should be stated up-front as a requirement along with the instructions in the helpful tip. Also no guarantee this isnt just ascii text and not an archive so a file type check first i think is reasonable and quick.
              – manbearpig
              2 hours ago













              Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
              – Bob
              2 hours ago





              Point, I'd somehow missed that. It is available for Windows but whether that's preferred over the online checker would depend on file size and privacy concerns (if any).
              – Bob
              2 hours ago













              up vote
              1
              down vote













              Try the freeware 7-zip:
              https://www.7-zip.org/



              It can decompress archive of many known file types.






              share|improve this answer








              New contributor




              Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.





















                up vote
                1
                down vote













                Try the freeware 7-zip:
                https://www.7-zip.org/



                It can decompress archive of many known file types.






                share|improve this answer








                New contributor




                Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.



















                  up vote
                  1
                  down vote










                  up vote
                  1
                  down vote









                  Try the freeware 7-zip:
                  https://www.7-zip.org/



                  It can decompress archive of many known file types.






                  share|improve this answer








                  New contributor




                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  Try the freeware 7-zip:
                  https://www.7-zip.org/



                  It can decompress archive of many known file types.







                  share|improve this answer








                  New contributor




                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer






                  New contributor




                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered 3 hours ago









                  Bognot

                  111




                  111




                  New contributor




                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  Bognot is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




















                      up vote
                      1
                      down vote













                      It looks like it's a "block gzipped" file and should be viewable with anything that knows gzip files (tar, gzip, etc). Winzip/7zip might just need it's extension changed to .gz (windows is funny that way).



                      Or Install the Windows Subsystem for Linux and use linux tools, like tar, gzip, file, bgzip (provided in the tabix package in Debian & probably others)...



                      • More info here:
                        https://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html


                      Or it could be a Blood Frontier game Map File, so use the game.






                      share|improve this answer
























                        up vote
                        1
                        down vote













                        It looks like it's a "block gzipped" file and should be viewable with anything that knows gzip files (tar, gzip, etc). Winzip/7zip might just need it's extension changed to .gz (windows is funny that way).



                        Or Install the Windows Subsystem for Linux and use linux tools, like tar, gzip, file, bgzip (provided in the tabix package in Debian & probably others)...



                        • More info here:
                          https://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html


                        Or it could be a Blood Frontier game Map File, so use the game.






                        share|improve this answer






















                          up vote
                          1
                          down vote










                          up vote
                          1
                          down vote









                          It looks like it's a "block gzipped" file and should be viewable with anything that knows gzip files (tar, gzip, etc). Winzip/7zip might just need it's extension changed to .gz (windows is funny that way).



                          Or Install the Windows Subsystem for Linux and use linux tools, like tar, gzip, file, bgzip (provided in the tabix package in Debian & probably others)...



                          • More info here:
                            https://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html


                          Or it could be a Blood Frontier game Map File, so use the game.






                          share|improve this answer












                          It looks like it's a "block gzipped" file and should be viewable with anything that knows gzip files (tar, gzip, etc). Winzip/7zip might just need it's extension changed to .gz (windows is funny that way).



                          Or Install the Windows Subsystem for Linux and use linux tools, like tar, gzip, file, bgzip (provided in the tabix package in Debian & probably others)...



                          • More info here:
                            https://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html


                          Or it could be a Blood Frontier game Map File, so use the game.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 2 hours ago









                          Xen2050

                          9,08421536




                          9,08421536




















                              Maringo7 is a new contributor. Be nice, and check out our Code of Conduct.









                               

                              draft saved


                              draft discarded


















                              Maringo7 is a new contributor. Be nice, and check out our Code of Conduct.












                              Maringo7 is a new contributor. Be nice, and check out our Code of Conduct.











                              Maringo7 is a new contributor. Be nice, and check out our Code of Conduct.













                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1359036%2fhow-do-i-decompress-bgz-files%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Comments

                              Popular posts from this blog

                              Long meetings (6-7 hours a day): Being “babysat” by supervisor

                              Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                              Confectionery